ci: rework CI script

Only build the artifacts for the Github runners
This commit is contained in:
David Gonzalez Martin 2023-07-09 15:23:02 -06:00
parent 3e0f7b9b1f
commit deffd2ee8b

View File

@ -23,18 +23,18 @@ jobs:
strategy: strategy:
matrix: matrix:
os: [ os: [
]
runs-on: [
ubuntu-latest, ubuntu-latest,
macos-latest, macos-latest,
windows-latest, windows-latest,
self-hosted,
] ]
runs-on: ${{ matrix.os }}
steps: steps:
- uses: actions/checkout@v3 - uses: actions/checkout@v3
- uses: goto-bus-stop/setup-zig@v2 - uses: goto-bus-stop/setup-zig@v2
with: with:
version: master version: master
- name: Zig environment variables
run: zig env
- name: Build test executables - name: Build test executables
run: zig build all_tests -Dci --verbose run: zig build all_tests -Dci --verbose