From 8fcdbe0beee659aaa96f04f725ca56e7c55ceeab Mon Sep 17 00:00:00 2001 From: Alexander Batalov Date: Mon, 10 Feb 2025 19:19:06 +0300 Subject: [PATCH] Add linux arm64 build (#453) --- .github/workflows/ci-build.yml | 27 +++++++++++++++++++++++++++ 1 file changed, 27 insertions(+) diff --git a/.github/workflows/ci-build.yml b/.github/workflows/ci-build.yml index b3c46592..11489101 100644 --- a/.github/workflows/ci-build.yml +++ b/.github/workflows/ci-build.yml @@ -173,6 +173,33 @@ jobs: path: out/build/linux-${{ matrix.arch }}-debug/fallout2-ce retention-days: 7 + linux-arm64: + name: Linux (arm64) + + runs-on: ubuntu-22.04-arm + + steps: + - name: Clone + uses: actions/checkout@v4 + + - name: Dependencies + run: | + sudo apt update + sudo apt install libsdl2-dev zlib1g-dev + + - name: Configure + run: cmake -B build -D CMAKE_BUILD_TYPE=Debug -D FALLOUT_VENDORED=OFF + + - name: Build + run: cmake --build build + + - name: Upload + uses: actions/upload-artifact@v4 + with: + name: fallout2-ce-linux-arm64 + path: build/fallout2-ce + retention-days: 7 + macos: name: macOS