fixup! [ci] Add inital support for github workflows #5
Workflow file for this run
This file contains hidden or 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: | |
| paths-ignore: | |
| - "README.md" | |
| - "**.md" | |
| - "LICENSE**" | |
| pull_request: | |
| paths-ignore: | |
| - "README.md" | |
| - "**.md" | |
| - "LICENSE**" | |
| jobs: | |
| x86_64-linux: | |
| runs-on: ubuntu-latest | |
| # We want to run on external PRs, but not on our own internal PRs as they'll be run by the push | |
| # to the branch. | |
| if: github.event_name == 'push' || github.event.pull_request.head.repo.full_name != github.repository | |
| steps: | |
| - name: Checkout | |
| uses: actions/checkout@v2 | |
| - name: Setup Zig | |
| run: | | |
| sudo apt install xz-utils | |
| sudo sh -c 'wget -c https://pkg.machengine.org/zig/zig-x86_64-linux-0.14.1.tar.xz -O - | tar -xJ --strip-components=1 -C /usr/local/bin' | |
| - name: build | |
| run: zig build | |
| - name: test | |
| run: zig build test | |
| x86_64-macos: | |
| runs-on: macos-13 | |
| # We want to run on external PRs, but not on our own internal PRs as they'll be run by the push | |
| # to the branch. | |
| if: github.event_name == 'push' || github.event.pull_request.head.repo.full_name != github.repository | |
| steps: | |
| - name: Checkout | |
| uses: actions/checkout@v2 | |
| - name: Setup Zig | |
| run: | | |
| brew install xz | |
| sudo sh -c 'wget -c https://pkg.machengine.org/zig/zig-x86_64-macos-0.14.1.tar.xz -O - | tar -xJ --strip-components=1 -C /usr/local/bin' | |
| - name: build | |
| run: zig build | |
| - name: test | |
| run: zig build test |