diff options
Diffstat (limited to '.github/workflows/macos-ci.yml')
-rw-r--r-- | .github/workflows/macos-ci.yml | 42 |
1 files changed, 0 insertions, 42 deletions
diff --git a/.github/workflows/macos-ci.yml b/.github/workflows/macos-ci.yml deleted file mode 100644 index f46cd156..00000000 --- a/.github/workflows/macos-ci.yml +++ /dev/null @@ -1,42 +0,0 @@ -name: macOS CI - -on: - push: - branches: [master] - paths-ignore: - - "docs/**" - - "**/README.md" - pull_request: - branches: [master] - paths-ignore: - - "docs/**" - - "**/README.md" - -jobs: - build: - name: Build - runs-on: macos-latest - - steps: - - uses: actions/checkout@v2 - - - name: Restore Cache - uses: actions/cache@v2 - with: - path: ~/.cache/vcpkg/archives - key: vcpkg-${{ runner.os }} - - - name: Setup Ninja - uses: ashutoshvarma/setup-ninja@master - with: - version: 1.10.2 - - - name: Build - run: | - cmake -DCMAKE_BUILD_TYPE:STRING=Debug -DCMAKE_C_COMPILER:FILEPATH=/usr/bin/clang -DCMAKE_CXX_COMPILER:FILEPATH=/usr/bin/clang++ -H. -B./build -G Ninja - cmake --build ./build --config Debug --target all - - - name: Test - working-directory: build - run: | - ctest -C Debug -T test --output-on-failure |