Add OC_API annotations to oc_buffer_settings.h #723
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
name: OCF Conformance | |
on: | |
pull_request: | |
types: | |
- labeled | |
push: | |
branches: | |
- master | |
- main | |
tags: | |
- "*" | |
jobs: | |
test: | |
name: Test | |
runs-on: [self-hosted, windows, ctt] | |
steps: | |
- name: Get commit SHA | |
id: commit | |
run: | | |
if ("${{github.event_name}}" -eq "pull_request") { | |
echo "sha=${{github.event.pull_request.head.sha}}" >> $env:GITHUB_OUTPUT | |
} else { | |
echo "sha=${{github.sha}}" >> $env:GITHUB_OUTPUT | |
} | |
- name: Test | |
run: python ../../github_run_ci.py --commit ${{steps.commit.outputs.sha}} | |
- name: Archive results | |
if: success() || failure() | |
uses: actions/upload-artifact@v4 | |
with: | |
name: logs | |
path: results/*.octt |