Fix buffer size decrementation for racy dir enumeration for issue #137 #395
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: Unit tests Mac OS | |
on: | |
push: | |
branches: | |
- develop | |
- master | |
pull_request: | |
schedule: | |
- cron: '0 0 1 * *' | |
jobs: | |
MacOS: | |
name: Mac OS 13 | |
runs-on: macos-13 | |
strategy: | |
fail-fast: false | |
matrix: | |
configuration: [error_code, status_code] | |
env: | |
NAME: MacOS-${{ matrix.configuration }} | |
steps: | |
- uses: actions/checkout@v3 | |
- name: CMake tests Mac OS | |
shell: bash | |
run: | | |
if [ "${{ matrix.configuration }}" = "status_code" ]; then | |
export CMAKE_CONFIGURE_OPTIONS="-DLLFIO_USE_EXPERIMENTAL_SG14_STATUS_CODE=ON" | |
fi | |
ctest -S .ci.cmake -VV -E noexcept --timeout 900 "-DCTEST_CONFIGURE_OPTIONS=$CMAKE_CONFIGURE_OPTIONS" | |
- name: Upload Prebuilt Binaries | |
uses: actions/upload-artifact@v3 | |
with: | |
name: Mac OS ${{ matrix.configuration }} prebuilt binaries | |
path: llfio-v2.0-binaries-darwin-x64.tgz | |
- name: Upload Test Results | |
if: always() | |
uses: actions/upload-artifact@v3 | |
with: | |
name: Mac OS ${{ matrix.configuration }} test results | |
path: prebuilt/merged_junit_results.xml | |
publish-test-results: | |
name: "Publish Unit Tests Results" | |
needs: [MacOS] | |
runs-on: ubuntu-latest | |
if: success() || failure() | |
steps: | |
- name: Download Artifacts | |
uses: actions/download-artifact@v3 | |
with: | |
path: artifacts | |
- name: Publish Unit Test Results | |
uses: EnricoMi/publish-unit-test-result-action@v2 | |
with: | |
check_name: Unit Test Results | |
github_token: ${{ secrets.GITHUB_TOKEN }} | |
files: '**/merged_junit_results.xml' |