Skip to content

Commit

Permalink
Remove macos release step
Browse files Browse the repository at this point in the history
  • Loading branch information
kengorab committed Oct 24, 2024
1 parent e3be799 commit 6add313
Showing 1 changed file with 0 additions and 44 deletions.
44 changes: 0 additions & 44 deletions .github/workflows/release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -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

0 comments on commit 6add313

Please sign in to comment.