From bdb3a06efbdb425fd1cc6141e44594eaa7caf281 Mon Sep 17 00:00:00 2001 From: s1lentq Date: Wed, 27 Nov 2024 00:36:30 +0700 Subject: [PATCH] Fix linux build --- .github/workflows/build.yml | 10 +++------- 1 file changed, 3 insertions(+), 7 deletions(-) diff --git a/.github/workflows/build.yml b/.github/workflows/build.yml index 000994b..8d866cd 100644 --- a/.github/workflows/build.yml +++ b/.github/workflows/build.yml @@ -48,23 +48,19 @@ jobs: linux: name: 'Linux' - runs-on: ubuntu-latest - container: s1lentq/linux86buildtools:latest + runs-on: ubuntu-20.04 outputs: app-version: ${{ steps.app-version.outputs.version }} - env: - ACTIONS_ALLOW_USE_UNSECURE_NODE_VERSION: true - steps: - name: Checkout uses: actions/checkout@v3 with: fetch-depth: 0 - - name: Build using Intel C++ Compiler 19.0 + - name: Build run: | - rm -rf build && CC=icc CXX=icpc cmake -B build && cmake --build build -j8 + rm -rf build && CC=gcc CXX=g++ cmake -B build && cmake --build build -j8 - name: Reading appversion.h id: app-version