From c4f8cf22cb989f87da2e0ebee0bbf961fc13cec6 Mon Sep 17 00:00:00 2001 From: Shriraj Hegde Date: Tue, 5 Oct 2021 17:46:08 +0530 Subject: [PATCH] Add aarch64 to workflow --- .github/workflows/continuous-build.yml | 13 ++++++++++--- 1 file changed, 10 insertions(+), 3 deletions(-) diff --git a/.github/workflows/continuous-build.yml b/.github/workflows/continuous-build.yml index 91b28ca..f31ed9d 100644 --- a/.github/workflows/continuous-build.yml +++ b/.github/workflows/continuous-build.yml @@ -15,12 +15,19 @@ jobs: run: | apt update && \ apt install coreutils sed git build-essential gcc-11 g++-11 -y - - name: Compile + apt install g++-11-aarch64-linux-gnu -y + - name: Resolve git hash run: | - make STATIC=true git init GIT_HASH=$(git rev-parse --short "$GITHUB_SHA") - mv bin/btop bin/btop-$GIT_HASH + - name: Compile x86_64 + run: | + make CXX=g++-11 ARCH=x86_64 STATIC=true QUIET=true + mv bin/btop bin/btop-x86_64-$GIT_HASH + - name: Compile aarch64 + run: | + make CXX=aarch64-linux-gnu-g++-11 ARCH=aarch64 STATIC=true QUIET=true + mv bin/btop bin/btop-aarch64-$GIT_HASH - uses: actions/upload-artifact@v2 with: