Skip to content

Commit

Permalink
Updating workflows
Browse files Browse the repository at this point in the history
  • Loading branch information
aletempiac committed May 23, 2024
1 parent 17ef3cd commit 25de569
Showing 1 changed file with 10 additions and 10 deletions.
20 changes: 10 additions & 10 deletions .github/workflows/macos.yml
Original file line number Diff line number Diff line change
Expand Up @@ -9,9 +9,9 @@ on:
- master

jobs:
build-gcc10:
name: GNU GCC 10
runs-on: macOS-12
build-gcc11:
name: GNU GCC 11
runs-on: macOS-latest

steps:
- uses: actions/checkout@v1
Expand All @@ -21,14 +21,14 @@ jobs:
run: |
mkdir build
cd build
cmake -DCMAKE_CXX_COMPILER=$(which g++-10) -DMOCKTURTLE_TEST=ON ..
cmake -DCMAKE_CXX_COMPILER=$(which g++-11) -DMOCKTURTLE_TEST=ON ..
make run_tests
- name: Run tests
run: |
cd build
./test/run_tests "~[quality]"
build-gcc11:
name: GNU GCC 11
build-gcc12:
name: GNU GCC 12
runs-on: macOS-latest

steps:
Expand All @@ -39,14 +39,14 @@ jobs:
run: |
mkdir build
cd build
cmake -DCMAKE_CXX_COMPILER=$(which g++-11) -DMOCKTURTLE_TEST=ON ..
cmake -DCMAKE_CXX_COMPILER=$(which g++-12) -DMOCKTURTLE_TEST=ON ..
make run_tests
- name: Run tests
run: |
cd build
./test/run_tests "~[quality]"
build-gcc12:
name: GNU GCC 12
build-gcc13:
name: GNU GCC 13
runs-on: macOS-latest

steps:
Expand All @@ -57,7 +57,7 @@ jobs:
run: |
mkdir build
cd build
cmake -DCMAKE_CXX_COMPILER=$(which g++-12) -DMOCKTURTLE_TEST=ON ..
cmake -DCMAKE_CXX_COMPILER=$(which g++-13) -DMOCKTURTLE_TEST=ON ..
make run_tests
- name: Run tests
run: |
Expand Down

0 comments on commit 25de569

Please sign in to comment.