From 7373d24905cd211aa42e842cc7afd24a71e0a76c Mon Sep 17 00:00:00 2001 From: aristocratos Date: Tue, 16 Nov 2021 07:34:09 +0100 Subject: [PATCH] Continuous build macos switch to BigSur Also added static linking with libgcc and libstdc++ --- .github/workflows/continuous-build-macos.yml | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/.github/workflows/continuous-build-macos.yml b/.github/workflows/continuous-build-macos.yml index 04bf471..2cb5e4a 100644 --- a/.github/workflows/continuous-build-macos.yml +++ b/.github/workflows/continuous-build-macos.yml @@ -17,18 +17,18 @@ on: jobs: build-osx: - runs-on: macos-latest + runs-on: macos-11 steps: - uses: actions/checkout@v2 - name: Compile run: | - make CXX=g++-11 ARCH=x86_64 + make CXX=g++-11 ARCH=x86_64 STATIC=true STRIP=true GIT_HASH=$(git rev-parse --short "$GITHUB_SHA") - mv bin/btop bin/btop-x86_64-$GIT_HASH + mv bin/btop bin/btop-x86_64-BigSur-$GIT_HASH ls -alh bin - uses: actions/upload-artifact@v2 with: - name: btop-x86_64-macos + name: btop-x86_64-macos-BigSur path: 'bin/*'