-
Notifications
You must be signed in to change notification settings - Fork 0
45 lines (38 loc) · 941 Bytes
/
ci.yml
File metadata and controls
45 lines (38 loc) · 941 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
name: CI
on:
pull_request:
push:
branches:
- main
- develop
jobs:
release-gates:
runs-on: ubuntu-latest
strategy:
fail-fast: false
matrix:
zig-version: [0.15.2]
steps:
- name: Checkout
uses: actions/checkout@v4
- name: Setup Zig
uses: mlugg/setup-zig@v2
with:
version: ${{ matrix.zig-version }}
- name: Run test gate
run: zig build test --summary all
- name: Run release build gate
run: zig build -Doptimize=ReleaseFast
interop-matrix:
runs-on: ubuntu-latest
strategy:
fail-fast: false
matrix:
peer: [quiche, ngtcp2, msquic]
steps:
- name: Checkout
uses: actions/checkout@v4
- name: Report interop lane
run: |
echo "Interop lane: ${{ matrix.peer }}"
echo "This lane is reserved for full cross-implementation interop tests."