Skip to content

Commit

Permalink
Run c++ tests on macos
Browse files Browse the repository at this point in the history
  • Loading branch information
cmmarslender committed Oct 13, 2023
1 parent e860807 commit bf43637
Showing 1 changed file with 19 additions and 4 deletions.
23 changes: 19 additions & 4 deletions .github/workflows/build-test-cplusplus.yml
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,7 @@ jobs:
runs-on: ubuntu-22.04
steps:
- name: Checkout code
uses: actions/checkout@v3
uses: actions/checkout@v4

- name: cmake, RunTests, and valgrind on ubuntu-20.04
run: |
Expand All @@ -38,7 +38,7 @@ jobs:
runs-on: ubuntu-22.04
steps:
- name: Checkout code
uses: actions/checkout@v3
uses: actions/checkout@v4

- name: cmake, RunTests with address- and undefined sanitizer on Ubuntu
run: |
Expand All @@ -59,7 +59,7 @@ jobs:
runs-on: ubuntu-22.04
steps:
- name: Checkout code
uses: actions/checkout@v3
uses: actions/checkout@v4

- name: cmake, RunTests with thread sanitizer on Ubuntu
run: |
Expand All @@ -69,12 +69,27 @@ jobs:
cmake --build . -- -j 6
TSAN_OPTIONS="memory_limit_mb=6000" ./RunTests
mac:
name: MacOS
runs-on: macos-latest
steps:
- name: Checkout code
uses: actions/checkout@v4

- name: cmake, RunTests on Mac
run: |
mkdir build
cd build
cmake ..
cmake --build . --config Release -j 6
./RunTests
windows:
name: Windows Latest
runs-on: windows-latest
steps:
- name: Checkout code
uses: actions/checkout@v3
uses: actions/checkout@v4

- name: cmake, RunTests with Windows
run: |
Expand Down

0 comments on commit bf43637

Please sign in to comment.