Skip to content

Update for latest Zig standard library #68

Update for latest Zig standard library

Update for latest Zig standard library #68

Workflow file for this run

name: ci
on:
pull_request:
push:
branches:
- main
jobs:
build:
strategy:
fail-fast: false
matrix:
target: [ x86-linux, x86_64-linux, aarch64-linux, riscv64-linux ]
runs-on: ubuntu-latest
steps:
- name: Checkout
uses: actions/checkout@v2
- name: Setup Zig
uses: goto-bus-stop/[email protected]
with:
version: master
- name: Build
run: zig build -Doptimize=ReleaseSafe -Dtarget=${{ matrix.target }}
- name: Archive executable
uses: actions/upload-artifact@v3
with:
name: poop
path: zig-out/bin/*