From 6add31338bc88900c6fae9657998f987482b098d Mon Sep 17 00:00:00 2001 From: Ken Gorab Date: Wed, 23 Oct 2024 20:13:19 -0400 Subject: [PATCH] Remove macos release step --- .github/workflows/release.yml | 44 ----------------------------------- 1 file changed, 44 deletions(-) diff --git a/.github/workflows/release.yml b/.github/workflows/release.yml index d82f85b4..efb120b5 100644 --- a/.github/workflows/release.yml +++ b/.github/workflows/release.yml @@ -69,47 +69,3 @@ jobs: tag_name: ${{ github.ref }} files: selfhost/gen-pkg/abra-linux.tar.gz append_body: true - build-macos: - runs-on: macos-latest - steps: - - name: Checkout source - uses: actions/checkout@v2 - - name: Cache QBE - id: cache-qbe - uses: actions/cache@v3 - with: - path: ./qbe/qbe-1.2 - key: qbe-1.2 - - name: Install LLVM (11.1.0) - run: - brew install llvm@11 - - name: Setup LLVM - run: | - echo "PATH=$(brew --prefix llvm@11)/bin:$PATH" >> $GITHUB_ENV - echo "LLVM_CONFIG=$(brew --prefix llvm@11)/bin/llvm-config" >> $GITHUB_ENV - - name: Install QBE - run: | - mkdir -p qbe - cd qbe - wget https://c9x.me/compile/release/qbe-1.2.tar.xz - tar -xf qbe-1.2.tar.xz - cd qbe-1.2 - make - if: steps.cache-qbe.outputs.cache-hit != 'true' - - name: Setup QBE - run: | - echo "PATH=$(pwd)/qbe/qbe-1.2:$PATH" >> $GITHUB_ENV - - name: Build reference compiler - run: cargo build - - name: Install ext dependencies - run: ./configure-libgc.sh - - name: Build package - run: | - cd selfhost - ./gen-pkg/gen.sh darwin-arm64 - - name: Release - uses: softprops/action-gh-release@v2 - with: - tag_name: ${{ github.ref }} - files: selfhost/gen-pkg/abra-darwin-arm64.tar.gz - append_body: true