Skip to content

Update for latest breaking Zig changes - std.os => std.posix. #74

Update for latest breaking Zig changes - std.os => std.posix.

Update for latest breaking Zig changes - std.os => std.posix. #74

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/setup-zig@v1.3.0
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/*