From fd36dc047170e002dd0e4aaa6b69148b898d1142 Mon Sep 17 00:00:00 2001 From: Joel Falcou Date: Fri, 6 Sep 2024 16:37:28 +0200 Subject: [PATCH] Fixed GA issues --- .github/workflows/unit.yml | 20 ++++++++++---------- 1 file changed, 10 insertions(+), 10 deletions(-) diff --git a/.github/workflows/unit.yml b/.github/workflows/unit.yml index fdab8c67..ff386c14 100644 --- a/.github/workflows/unit.yml +++ b/.github/workflows/unit.yml @@ -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 @@ -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 @@ -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: @@ -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 @@ -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: @@ -93,18 +93,18 @@ 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 - cmake .. -DCMAKE_CXX_COMPILER=g++-11 -DCMAKE_CXX_FLAGS="${{ matrix.cfg.opts }}" + cmake .. -DCMAKE_CXX_COMPILER=g++-14 -DCMAKE_CXX_FLAGS="${{ matrix.cfg.opts }}" - name: Compiling Unit Tests run: cd build && make unit -j 2 - name: Running Unit Tests run: cd build && ctest --output-on-failure -j 2 android: - runs-on: [macos-12] + runs-on: [macos-14] strategy: fail-fast: false matrix: @@ -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 @@ -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