From 90cd6b0c0ad84c5336fc541ea6188b7cbed83605 Mon Sep 17 00:00:00 2001 From: Siarhei Fedartsou Date: Fri, 7 Jun 2024 18:22:09 +0200 Subject: [PATCH] wip --- .github/workflows/osrm-backend.yml | 16 ++++++++-------- 1 file changed, 8 insertions(+), 8 deletions(-) diff --git a/.github/workflows/osrm-backend.yml b/.github/workflows/osrm-backend.yml index 33fb51c31..399d418aa 100644 --- a/.github/workflows/osrm-backend.yml +++ b/.github/workflows/osrm-backend.yml @@ -29,8 +29,8 @@ jobs: continue-on-error: false env: BUILD_TYPE: Release - CC: clang - CXX: clang++ + CC: gcc + CXX: g++ steps: - uses: actions/checkout@v4 - name: Install Ninja @@ -69,11 +69,11 @@ jobs: run: | clang --version clang++ --version - - name: Configure Conan to use Clang - shell: bash - run: | - conan profile new default --detect || true - conan profile update settings.compiler=clang default + # - name: Configure Conan to use Clang + # shell: bash + # run: | + # conan profile new default --detect || true + # conan profile update settings.compiler=clang default - name: Build shell: bash run: | @@ -81,7 +81,7 @@ jobs: clang --version mkdir build cd build - cmake -G "Ninja" -DCMAKE_BUILD_TYPE=Release -DENABLE_CONAN=ON -DENABLE_NODE_BINDINGS=ON -DCMAKE_C_COMPILER=clang -DCMAKE_CXX_COMPILER=clang++ .. + cmake -G "Ninja" -DCMAKE_BUILD_TYPE=Release -DENABLE_CONAN=ON -DENABLE_NODE_BINDINGS=ON -DCMAKE_C_COMPILER=gcc -DCMAKE_CXX_COMPILER=g++ .. cmake --build . --config Release # .\scripts\ci\windows-build.bat