Skip to content

Commit

Permalink
Fixed GA issues
Browse files Browse the repository at this point in the history
  • Loading branch information
jfalcou committed Sep 6, 2024
1 parent 274db74 commit 70682ef
Showing 1 changed file with 9 additions and 9 deletions.
18 changes: 9 additions & 9 deletions .github/workflows/unit.yml
Original file line number Diff line number Diff line change
Expand Up @@ -26,7 +26,7 @@ jobs:
- { opts: -Ofast -flto=auto -DNDEBUG }
steps:
- name: Fetch current branch
uses: actions/checkout@v3
uses: actions/checkout@v4
- name: Setup Kiwaku using g++-12 with ${{ matrix.cfg.opts }}
run: |
mkdir build
Expand All @@ -51,7 +51,7 @@ jobs:
- { opts: "-O0 -stdlib=libc++" , linker: -stdlib=libc++ }
steps:
- name: Fetch current branch
uses: actions/checkout@v3
uses: actions/checkout@v4
- name: Running CMake for clang++ with ${{ matrix.cfg.opts }}
run: |
mkdir build && cd build
Expand All @@ -62,7 +62,7 @@ jobs:
run: cd build && ctest --output-on-failure -j 2

clang-macosx:
runs-on: [macos-12]
runs-on: [macos-14]
strategy:
fail-fast: false
matrix:
Expand All @@ -73,7 +73,7 @@ jobs:
- { opts: "-Ofast -flto -DNDEBUG -stdlib=libc++", linker: -stdlib=libc++ }
steps:
- name: Fetch current branch
uses: actions/checkout@v3
uses: actions/checkout@v4
- name: Running CMake for clang++ with ${{ matrix.cfg.opts }}
run: |
mkdir build && cd build
Expand All @@ -84,7 +84,7 @@ jobs:
run: cd build && ctest --output-on-failure -j 2

gcc-macosx:
runs-on: [macos-11]
runs-on: [macos-14]
strategy:
fail-fast: false
matrix:
Expand All @@ -93,7 +93,7 @@ jobs:
- { opts: -Ofast -flto -DNDEBUG }
steps:
- name: Fetch current branch
uses: actions/checkout@v3
uses: actions/checkout@v4
- name: Running CMake for g++ with ${{ matrix.cfg.opts }}
run: |
mkdir build && cd build
Expand All @@ -104,7 +104,7 @@ jobs:
run: cd build && ctest --output-on-failure -j 2

android:
runs-on: [macos-12]
runs-on: [macos-14]
strategy:
fail-fast: false
matrix:
Expand All @@ -113,7 +113,7 @@ jobs:
- { opts: -Ofast -flto -DNDEBUG }
steps:
- name: Fetch current branch
uses: actions/checkout@v3
uses: actions/checkout@v4
- name: Running CMake for g++ with ${{ matrix.cfg.opts }}
run: |
mkdir build && cd build
Expand All @@ -131,7 +131,7 @@ jobs:
# - { mode: Release}
# steps:
# - name: Fetch current branch
# uses: actions/checkout@v3
# uses: actions/checkout@v4
# - name: Running CMake for MSVC ${{ matrix.cfg.mode }}
# run: |
# mkdir build && cd build
Expand Down

0 comments on commit 70682ef

Please sign in to comment.