Test release job #9
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
name: Build compiler for linux and mac | |
on: [pull_request, push, workflow_dispatch] | |
jobs: | |
build: | |
name: Build zig | |
runs-on: ${{ matrix.os }} | |
strategy: | |
matrix: | |
include: | |
- target: x86_64-linux-gnu | |
os: ubuntu-latest | |
- target: aarch64-linux-gnu | |
os: ubuntu-latest | |
- target: x86_64-macos-none | |
os: macos-latest | |
- target: aarch64-macos-none | |
os: macos-latest | |
fail-fast: false | |
steps: | |
- uses: actions/checkout@v4 | |
with: | |
submodules: true | |
- name: Install coreutils | |
run: | | |
brew update && brew install coreutils | |
if: matrix.os == 'macos-latest' | |
shell: bash | |
# - name: Build | |
# run: ./build ${{ matrix.target }} baseline | |
# shell: bash | |
# - name: Create tarball | |
# run: tar -C out -cjf zig-${{ matrix.target }}.tar.bz2 zig-${{ matrix.target }}-baseline | |
# shell: bash | |
- name: Create test tarball | |
run: echo "test" > zig-${{ matrix.target }}.tar.bz2 | |
shell: bash | |
- name: Upload ${{ matrix.target }} tarball | |
uses: actions/upload-artifact@v3 | |
with: | |
name: zig-${{ matrix.target }}.tar.bz2 | |
path: zig-${{ matrix.target }}.tar.bz2 | |
create_release: | |
name: Create Release | |
runs-on: ubuntu-latest | |
if: ${{ startsWith(github.ref, 'refs/tags/') }} | |
steps: | |
- name: Download tarballs | |
uses: actions/download-artifact@v4 | |
with: | |
pattern: zig-*.tar.bz2 | |
- name: Create GH Release | |
uses: softprops/action-gh-release@v0.1.15 | |
with: | |
files: zig-*.tar.bz2 |