all: update to latest Zig version #60
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: CI | |
on: | |
- push | |
- pull_request | |
jobs: | |
x86_64-macos: | |
runs-on: macos-12 | |
steps: | |
- name: Checkout | |
uses: actions/checkout@v2 | |
with: | |
submodules: 'true' | |
- name: Setup Zig | |
run: | | |
brew install xz | |
sudo sh -c 'wget -c https://pkg.machengine.org/zig/zig-macos-x86_64-0.12.0-dev.876+aaf46187a.tar.xz -O - | tar -xJ --strip-components=1 -C /usr/local/bin' | |
- name: build | |
run: zig build | |
env: | |
AGREE: true |