Skip to content

build: fix up the zig version printing #18

build: fix up the zig version printing

build: fix up the zig version printing #18

Workflow file for this run

on:
workflow_dispatch:
push:
branches:
- main
- master
- b-dockerdeploy
pull_request:
branches:
- main
- master
jobs:
test-compose-action:
runs-on: ubuntu-latest
name: Zig build
strategy:
fail-fast: false
matrix:
include:
# no member named 'mode' in struct 'std.fs.file.OpenFlags'
# - zigver: '0.9.0'
# zigdev: false
# - zigver: '0.9.1'
# zigdev: false
- zigver: '0.10.0'
zigdev: false
- zigver: '0.10.1'
zigdev: false
# https://marler8997.github.io/zig-unofficial-releases/
- zigver: '0.11.0-dev.1507+6f13a725a'
zigdev: true
# no field or member function named 'standardReleaseOptions' in 'Build'
- zigver: '0.11.0-dev.4003+c6aa29b6f'
zigdev: true
steps:
- uses: actions/checkout@v3
- name: Docker Compose multi-stage build
run: |
docker-compose -f docker-compose.yml.sample build --build-arg "ZIGVER=${{ matrix.zigver }}" --build-arg "ZIGDEV=${{ matrix.zigdev }}"