From 145e803e6ea1d604af5de0d61af5c4009400ccf7 Mon Sep 17 00:00:00 2001 From: Tim Angus Date: Sat, 6 Sep 2025 11:57:35 +0100 Subject: [PATCH] FIX CI building via Makfile --- .github/workflows/build.yml | 10 ++++++++-- 1 file changed, 8 insertions(+), 2 deletions(-) diff --git a/.github/workflows/build.yml b/.github/workflows/build.yml index 00aeee8f..2558afff 100644 --- a/.github/workflows/build.yml +++ b/.github/workflows/build.yml @@ -12,7 +12,9 @@ jobs: sudo apt-get update sudo apt-get install libsdl2-dev - name: Compile - run: make release -j$(nproc) + run: | + echo I_ACKNOWLEDGE_THE_MAKEFILE_IS_DEPRECATED=1 > Makefile.local + make release -j$(nproc) windows-legacy: name: Windows (Legacy Makefile) runs-on: windows-2022 @@ -20,6 +22,7 @@ jobs: - uses: actions/checkout@v4 - name: Compile run: | + echo I_ACKNOWLEDGE_THE_MAKEFILE_IS_DEPRECATED=1 > Makefile.local make release -j $env:NUMBER_OF_PROCESSORS macos-legacy: name: macOS (Legacy Makefile) @@ -27,7 +30,9 @@ jobs: steps: - uses: actions/checkout@v4 - name: Compile - run: make release -j$(sysctl -n hw.logicalcpu) + run: | + echo I_ACKNOWLEDGE_THE_MAKEFILE_IS_DEPRECATED=1 > Makefile.local + make release -j$(sysctl -n hw.logicalcpu) emscripten-legacy: name: Emscripten (Legacy Makefile) runs-on: ubuntu-latest @@ -44,6 +49,7 @@ jobs: ./emsdk activate 3.1.58 - name: Compile run: | + echo I_ACKNOWLEDGE_THE_MAKEFILE_IS_DEPRECATED=1 > Makefile.local source emsdk/emsdk_env.sh emmake make release -j$(nproc)