abe07e601e
* build_runner: update to use new caching system * build_runner: switch ci to use 0.10.1 instead of 0.10.0 * build_runner: support older versions * build_runner: ensure depreciated functions and types are handled when they are removed * build_runner: prevent access denied on global cache
42 lines
944 B
YAML
42 lines
944 B
YAML
name: BuildRunner
|
|
|
|
on:
|
|
push:
|
|
paths:
|
|
- "src/special/build_runner.zig"
|
|
pull_request:
|
|
paths:
|
|
- "src/special/build_runner.zig"
|
|
schedule:
|
|
- cron: '0 0 * * *'
|
|
workflow_dispatch:
|
|
|
|
jobs:
|
|
check_build_runner:
|
|
strategy:
|
|
matrix:
|
|
zig_version: [0.9.1, 0.10.1, master]
|
|
|
|
runs-on: ubuntu-latest
|
|
|
|
steps:
|
|
- name: Checkout
|
|
uses: actions/checkout@v3
|
|
with:
|
|
fetch-depth: 0
|
|
submodules: true
|
|
|
|
- name: Grab zig
|
|
uses: goto-bus-stop/setup-zig@v1
|
|
with:
|
|
version: ${{ matrix.zig_version }}
|
|
|
|
- name: Create temp zig project
|
|
run: |
|
|
mkdir $RUNNER_TEMP/TEMP_ZIG_PROJECT
|
|
cd $RUNNER_TEMP/TEMP_ZIG_PROJECT
|
|
zig init-exe
|
|
|
|
- name: Check build_runner builds
|
|
run: zig build-exe $GITHUB_WORKSPACE/src/special/build_runner.zig --pkg-begin @build@ $RUNNER_TEMP/TEMP_ZIG_PROJECT/build.zig --pkg-end
|