Skip to content

Commit

Permalink
Some cleanup and work on trying to fix ci
Browse files Browse the repository at this point in the history
  • Loading branch information
jeremy-rifkin committed Feb 13, 2024
1 parent 3f5e3a7 commit c193dcc
Show file tree
Hide file tree
Showing 2 changed files with 8 additions and 5 deletions.
11 changes: 8 additions & 3 deletions .github/workflows/build.yml
Original file line number Diff line number Diff line change
Expand Up @@ -24,16 +24,21 @@ jobs:
cd build
cmake .. \
-DCMAKE_BUILD_TYPE=${{matrix.target}} \
-DCMAKE_CXX_COMPILER=${{matrix.compiler}} \
-DCPPTRACE_BACKTRACE_PATH=/usr/lib/gcc/x86_64-linux-gnu/11/include/backtrace.h
-DCMAKE_CXX_COMPILER=${{matrix.compiler}}
make -j
build-macos:
runs-on: macos-14
strategy:
fail-fast: false
matrix:
compiler: [g++-13, clang++]
compiler: [g++-12, clang++]
c_compiler: [gcc-12, clang]
target: [Debug, Release]
exclude: # TODO: Ugly hack
- compiler: g++-12
c_compiler: clang
- compiler: clang++
c_compiler: gcc-12
steps:
- uses: actions/checkout@v2
- name: build
Expand Down
2 changes: 0 additions & 2 deletions .github/workflows/tests.yml
Original file line number Diff line number Diff line change
Expand Up @@ -28,7 +28,6 @@ jobs:
cmake .. \
-DCMAKE_BUILD_TYPE=${{matrix.target}} \
-DCMAKE_CXX_COMPILER=${{matrix.compiler}} \
-DCPPTRACE_BACKTRACE_PATH=/usr/lib/gcc/x86_64-linux-gnu/11/include/backtrace.h \
-DASSERT_BUILD_TESTING=On
make -j
- name: test
Expand Down Expand Up @@ -57,7 +56,6 @@ jobs:
cmake .. \
-DCMAKE_BUILD_TYPE=${{matrix.target}} \
-DCMAKE_CXX_COMPILER=${{matrix.compiler}} \
-DCPPTRACE_BACKTRACE_PATH=/usr/lib/gcc/x86_64-linux-gnu/11/include/backtrace.h \
-DASSERT_BUILD_TESTING=On
make -j
- name: test
Expand Down

0 comments on commit c193dcc

Please sign in to comment.