diff --git a/.github/workflows/dataset_tests.yml b/.github/workflows/dataset_tests.yml index f2b3ad62..a094556c 100644 --- a/.github/workflows/dataset_tests.yml +++ b/.github/workflows/dataset_tests.yml @@ -14,6 +14,11 @@ jobs: runs-on: ubuntu-latest steps: + - name: Set up GCC + uses: egor-tensin/setup-gcc@v1.3 + with: + version: 13 + platform: x64 - name: Checkout projet uses: actions/checkout@v2 - name: Checkout datasets @@ -24,7 +29,7 @@ jobs: - name: CMake run: | cd ./build - CC=gcc-13 CXX=/usr/bin/g++-13 cmake -G"Unix Makefiles" ./.. -DCMAKE_BUILD_TYPE=Release + CXX=/usr/bin/g++-14 cmake -G"Unix Makefiles" ./.. -DCMAKE_BUILD_TYPE=Release - name: make run: | cd ./build diff --git a/.github/workflows/unit_tests_linux.yml b/.github/workflows/unit_tests_linux.yml index ea8f2704..6574e67f 100644 --- a/.github/workflows/unit_tests_linux.yml +++ b/.github/workflows/unit_tests_linux.yml @@ -8,12 +8,17 @@ jobs: runs-on: ubuntu-latest steps: + - name: Set up GCC + uses: egor-tensin/setup-gcc@v1.3 + with: + version: 13 + platform: x64 - name: Checkout the project uses: actions/checkout@v2 - name: CMake run: | cd ./build - CC=gcc-13 CXX=/usr/bin/g++-13 cmake -G"Unix Makefiles" ./.. -DCMAKE_BUILD_TYPE=Release + CXX=/usr/bin/g++-14 cmake -G"Unix Makefiles" ./.. -DCMAKE_BUILD_TYPE=Release - name: Make run: | cd ./build