From 86c224c3af1fc2f6997572ec223822b7c83a6bed Mon Sep 17 00:00:00 2001 From: Enrico Seiler Date: Mon, 8 Jul 2024 12:02:32 +0200 Subject: [PATCH] CI --- .github/workflows/ci_macos.yml | 17 ++++------------- 1 file changed, 4 insertions(+), 13 deletions(-) diff --git a/.github/workflows/ci_macos.yml b/.github/workflows/ci_macos.yml index 2011975..9e90aa0 100644 --- a/.github/workflows/ci_macos.yml +++ b/.github/workflows/ci_macos.yml @@ -32,7 +32,6 @@ jobs: - name: "clang17" compiler: "clang-17" build_type: Release - cxx_flags: "-stdlib=libc++" # For verbosity. This is already the default. - name: "gcc13" compiler: "gcc-13" @@ -56,19 +55,11 @@ jobs: compiler: ${{ matrix.compiler }} ccache_size: 75M - - name: Install CMake - uses: seqan/actions/setup-cmake@main - with: - cmake: 3.25.3 - - name: Configure run: | - mkdir build - cd build - cmake .. -DCMAKE_BUILD_TYPE=${{ matrix.build_type }} \ - -DCMAKE_CXX_FLAGS="${{ matrix.cxx_flags }} -Werror" + mkdir build && cd build + cmake .. -DCMAKE_BUILD_TYPE=Release -DCMAKE_CXX_FLAGS="-Werror" - name: Build and run tests - run: | - cd build - make -j3 -k check + working-directory: build + run: make -k check