-
-
Notifications
You must be signed in to change notification settings - Fork 3
119 lines (100 loc) · 2.61 KB
/
ci.yml
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
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
---
name: CI
"on": [push, pull_request]
permissions:
id-token: write
contents: read
attestations: read
env:
ZIG_VERSION: 0.13.0
jobs:
build-cross:
name: Build
runs-on: ubuntu-latest
strategy:
fail-fast: false
matrix:
mode: ["fast", "safe", "small", "off"]
target:
- "x86-linux"
- "x86_64-linux"
- "aarch64-linux"
- "x86_64-macos"
- "aarch64-macos"
steps:
- name: Checkout
uses: actions/checkout@v4
- name: Install Zig
uses: mlugg/setup-zig@v1
with:
version: ${{ env.ZIG_VERSION }}
- name: Build
run: |
zig build -Dtarget=${{ matrix.target }} --release=${{ matrix.mode }} --verbose --summary all
test:
name: Test
strategy:
matrix:
os: [ubuntu, macos]
mode: ["fast", "safe", "small", "off"]
runs-on: ${{ matrix.os }}-latest
steps:
- name: Checkout
uses: actions/checkout@v4
- name: Install Zig
uses: mlugg/setup-zig@v1
with:
version: ${{ env.ZIG_VERSION }}
- name: Build
run: zig build --release=${{ matrix.mode }} --verbose --summary all
- name: Test
run: zig build test --release=${{ matrix.mode }} --summary all
coverage:
name: Test coverage
runs-on: ubuntu-latest
if: "!startsWith(github.ref, 'refs/tags/')"
steps:
- name: Checkout
uses: actions/checkout@v4
- name: Install Zig
uses: mlugg/setup-zig@v1
with:
version: ${{ env.ZIG_VERSION }}
- name: Install kcov
run: |
sudo apt-get update
sudo apt-get install -y kcov
- name: Generate coverage
run: zig build coverage --summary all
- name: Upload coverage
uses: codecov/codecov-action@v4
with:
directory: coverage
verbose: true
token: ${{ secrets.CODECOV_TOKEN }}
lint:
name: Format
runs-on: ubuntu-latest
if: "!startsWith(github.ref, 'refs/tags/')"
steps:
- name: Checkout
uses: actions/checkout@v4
- name: Install Zig
uses: mlugg/setup-zig@v1
with:
version: ${{ env.ZIG_VERSION }}
- name: Check formatting
run: zig fmt --check .
release:
name: Releas
needs: [build-cross, test]
permissions:
contents: write
id-token: write
attestations: write
if: |
github.repository_owner == 'charlesrocket' &&
startsWith(github.ref, 'refs/tags/')
uses: ./.github/workflows/cd.yml
with:
tag_name: ${{ github.ref_name }}