From 210d536eb07a477a85af6769e7b508af38fce822 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Jonathan=20M=C3=BCller?= Date: Thu, 30 Jun 2022 17:12:52 +0200 Subject: [PATCH] Remove MacOS workflow --- .github/workflows/ci.yml | 21 --------------------- 1 file changed, 21 deletions(-) diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index 23a0715..f52db75 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -71,24 +71,3 @@ jobs: working-directory: build/ run: ctest --output-on-failure - macos: - runs-on: macos-latest - - steps: - - uses: actions/checkout@v2 - - name: Create Build Environment - run: cmake -E make_directory build - - name: Install ninja - run: brew install ninja - - - name: Configure - working-directory: build/ - run: cmake -GNinja $GITHUB_WORKSPACE -DLLVM_CONFIG_BINARY="$(brew --prefix llvm)/bin/llvm-config" -DCLANG_BINARY=clang++ - - name: Build - working-directory: build/ - run: cmake --build . - - name: Test - working-directory: build/ - run: ctest --output-on-failure - -