From 2e058b171a1f396e31c33da1a7b1e634522f1702 Mon Sep 17 00:00:00 2001 From: Shriraj Hegde Date: Tue, 5 Oct 2021 18:25:57 +0530 Subject: Store built binaries in 'multiarch_bin' --- .github/workflows/continuous-build.yml | 7 ++++--- 1 file changed, 4 insertions(+), 3 deletions(-) (limited to '.github') diff --git a/.github/workflows/continuous-build.yml b/.github/workflows/continuous-build.yml index 3bf81a5..e4ef344 100644 --- a/.github/workflows/continuous-build.yml +++ b/.github/workflows/continuous-build.yml @@ -20,17 +20,18 @@ jobs: run: | git init GIT_HASH=$(git rev-parse --short "$GITHUB_SHA") + mkdir multiarch_bin - 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 + mv bin/btop multiarch_bin/btop-x86_64-$GIT_HASH make distclean - 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 + mv bin/btop multiarch_bin/btop-aarch64-$GIT_HASH make distclean - uses: actions/upload-artifact@v2 with: name: btop - path: 'bin/btop-*' \ No newline at end of file + path: 'multiarch_bin/btop-*' \ No newline at end of file -- cgit v1.2.3