forked from tailcallhq/forgecode
-
Notifications
You must be signed in to change notification settings - Fork 0
296 lines (295 loc) · 10.8 KB
/
ci.yml
File metadata and controls
296 lines (295 loc) · 10.8 KB
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
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
# -------------------------------------------------------------------
# ------------------------------- WARNING ---------------------------
# -------------------------------------------------------------------
#
# This file was automatically generated by gh-workflows using the
# gh-workflow-gen bin. You should add and commit this file to your
# git repository. **DO NOT EDIT THIS FILE BY HAND!** Any manual changes
# will be lost if the file is regenerated.
#
# To make modifications, update your `build.rs` configuration to adjust
# the workflow description as needed, then regenerate this file to apply
# those changes.
#
# -------------------------------------------------------------------
# ----------------------------- END WARNING -------------------------
# -------------------------------------------------------------------
name: ci
env:
RUSTFLAGS: '-Dwarnings'
OPENROUTER_API_KEY: ${{secrets.OPENROUTER_API_KEY}}
'on':
pull_request:
types:
- opened
- synchronize
- reopened
- labeled
branches:
- main
push:
branches:
- main
tags:
- v*
jobs:
build:
name: Build and Test
runs-on: ubuntu-latest
permissions:
contents: read
steps:
- name: Checkout Code
uses: actions/checkout@v6
- name: Setup Protobuf Compiler
uses: arduino/setup-protoc@v3
with:
repo-token: ${{ secrets.GITHUB_TOKEN }}
- name: Setup Rust Toolchain
uses: actions-rust-lang/setup-rust-toolchain@v1
with:
toolchain: stable
- name: Install cargo-llvm-cov
run: cargo install cargo-llvm-cov
- name: Generate coverage
run: cargo llvm-cov --all-features --workspace --lcov --output-path lcov.info
zsh_rprompt_perf:
name: 'Performance: zsh rprompt'
runs-on: ubuntu-latest
permissions:
contents: read
steps:
- name: Checkout Code
uses: actions/checkout@v6
- name: Setup Protobuf Compiler
uses: arduino/setup-protoc@v3
with:
repo-token: ${{ secrets.GITHUB_TOKEN }}
- name: Setup Rust Toolchain
uses: actions-rust-lang/setup-rust-toolchain@v1
with:
toolchain: stable
- name: Run performance benchmark
run: './scripts/benchmark.sh --threshold 60 zsh rprompt'
draft_release:
needs:
- build
if: github.event_name == 'push' && github.ref == 'refs/heads/main'
name: Draft Release
runs-on: ubuntu-latest
permissions:
contents: write
pull-requests: write
outputs:
crate_release_name: ${{ steps.set_output.outputs.crate_release_name }}
crate_release_id: ${{ steps.set_output.outputs.crate_release_id }}
steps:
- name: Checkout Code
uses: actions/checkout@v6
- id: create_release
name: Draft Release
uses: release-drafter/release-drafter@v7
with:
config-name: release-drafter.yml
env:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
- id: set_output
name: Export Outputs
run: echo "crate_release_id=${{ steps.create_release.outputs.id }}" >> $GITHUB_OUTPUT && echo "crate_release_name=${{ steps.create_release.outputs.tag_name }}" >> $GITHUB_OUTPUT
draft_release_pr:
if: 'github.event_name == ''pull_request'' && contains(github.event.pull_request.labels.*.name, ''ci: build all targets'')'
name: Draft Release for PR
runs-on: ubuntu-latest
outputs:
crate_release_name: ${{ steps.set_output.outputs.crate_release_name }}
crate_release_id: ${{ steps.set_output.outputs.crate_release_id }}
steps:
- name: Checkout Code
uses: actions/checkout@v6
- id: set_output
name: Set Release Version
run: echo "crate_release_name=pr-build-${{ github.event.number }}" >> $GITHUB_OUTPUT && echo "crate_release_id=pr-build-${{ github.event.number }}" >> $GITHUB_OUTPUT
build_release:
needs:
- draft_release
if: github.event_name == 'push' && github.ref == 'refs/heads/main'
name: build-release
runs-on: ${{ matrix.os }}
permissions:
contents: write
pull-requests: write
strategy:
matrix:
include:
- binary_name: forge-x86_64-unknown-linux-musl
binary_path: target/x86_64-unknown-linux-musl/release/forge
cross: 'true'
os: ubuntu-latest
target: x86_64-unknown-linux-musl
- binary_name: forge-aarch64-unknown-linux-musl
binary_path: target/aarch64-unknown-linux-musl/release/forge
cross: 'true'
os: ubuntu-latest
target: aarch64-unknown-linux-musl
- binary_name: forge-x86_64-unknown-linux-gnu
binary_path: target/x86_64-unknown-linux-gnu/release/forge
cross: 'false'
os: ubuntu-latest
target: x86_64-unknown-linux-gnu
- binary_name: forge-aarch64-unknown-linux-gnu
binary_path: target/aarch64-unknown-linux-gnu/release/forge
cross: 'true'
os: ubuntu-latest
target: aarch64-unknown-linux-gnu
- binary_name: forge-x86_64-apple-darwin
binary_path: target/x86_64-apple-darwin/release/forge
cross: 'false'
os: macos-latest
target: x86_64-apple-darwin
- binary_name: forge-aarch64-apple-darwin
binary_path: target/aarch64-apple-darwin/release/forge
cross: 'false'
os: macos-latest
target: aarch64-apple-darwin
- binary_name: forge-x86_64-pc-windows-msvc.exe
binary_path: target/x86_64-pc-windows-msvc/release/forge.exe
cross: 'false'
os: windows-latest
target: x86_64-pc-windows-msvc
- binary_name: forge-aarch64-pc-windows-msvc.exe
binary_path: target/aarch64-pc-windows-msvc/release/forge.exe
cross: 'false'
os: windows-latest
target: aarch64-pc-windows-msvc
- binary_name: forge-aarch64-linux-android
binary_path: target/aarch64-linux-android/release/forge
cross: 'true'
os: ubuntu-latest
target: aarch64-linux-android
steps:
- name: Checkout Code
uses: actions/checkout@v6
- name: Setup Protobuf Compiler
if: ${{ matrix.cross == 'false' }}
uses: arduino/setup-protoc@v3
with:
repo-token: ${{ secrets.GITHUB_TOKEN }}
- name: Setup Cross Toolchain
if: ${{ matrix.cross == 'false' }}
uses: taiki-e/setup-cross-toolchain-action@v1
with:
target: ${{ matrix.target }}
- name: Add Rust target
if: ${{ matrix.cross == 'false' }}
run: rustup target add ${{ matrix.target }}
- name: Set Rust Flags
if: '!(contains(matrix.target, ''-unknown-linux-'') || contains(matrix.target, ''-android''))'
run: echo "RUSTFLAGS=-C target-feature=+crt-static" >> $GITHUB_ENV
- name: Build Binary
uses: ClementTsang/cargo-action@v0.0.7
with:
command: build --release
args: '--target ${{ matrix.target }}'
use-cross: ${{ matrix.cross }}
cross-version: '0.2.5'
env:
RUSTFLAGS: ${{ env.RUSTFLAGS }}
POSTHOG_API_SECRET: ${{secrets.POSTHOG_API_SECRET}}
APP_VERSION: ${{ needs.draft_release.outputs.crate_release_name }}
- name: Copy Binary
run: cp ${{ matrix.binary_path }} ${{ matrix.binary_name }}
- name: Upload to Release
uses: xresloader/upload-to-github-release@v1
with:
release_id: ${{ needs.draft_release.outputs.crate_release_id }}
file: ${{ matrix.binary_name }}
overwrite: 'true'
build_release_pr:
needs:
- draft_release_pr
if: 'github.event_name == ''pull_request'' && contains(github.event.pull_request.labels.*.name, ''ci: build all targets'')'
name: build-release
runs-on: ${{ matrix.os }}
permissions:
contents: write
pull-requests: write
strategy:
matrix:
include:
- binary_name: forge-x86_64-unknown-linux-musl
binary_path: target/x86_64-unknown-linux-musl/release/forge
cross: 'true'
os: ubuntu-latest
target: x86_64-unknown-linux-musl
- binary_name: forge-aarch64-unknown-linux-musl
binary_path: target/aarch64-unknown-linux-musl/release/forge
cross: 'true'
os: ubuntu-latest
target: aarch64-unknown-linux-musl
- binary_name: forge-x86_64-unknown-linux-gnu
binary_path: target/x86_64-unknown-linux-gnu/release/forge
cross: 'false'
os: ubuntu-latest
target: x86_64-unknown-linux-gnu
- binary_name: forge-aarch64-unknown-linux-gnu
binary_path: target/aarch64-unknown-linux-gnu/release/forge
cross: 'true'
os: ubuntu-latest
target: aarch64-unknown-linux-gnu
- binary_name: forge-x86_64-apple-darwin
binary_path: target/x86_64-apple-darwin/release/forge
cross: 'false'
os: macos-latest
target: x86_64-apple-darwin
- binary_name: forge-aarch64-apple-darwin
binary_path: target/aarch64-apple-darwin/release/forge
cross: 'false'
os: macos-latest
target: aarch64-apple-darwin
- binary_name: forge-x86_64-pc-windows-msvc.exe
binary_path: target/x86_64-pc-windows-msvc/release/forge.exe
cross: 'false'
os: windows-latest
target: x86_64-pc-windows-msvc
- binary_name: forge-aarch64-pc-windows-msvc.exe
binary_path: target/aarch64-pc-windows-msvc/release/forge.exe
cross: 'false'
os: windows-latest
target: aarch64-pc-windows-msvc
- binary_name: forge-aarch64-linux-android
binary_path: target/aarch64-linux-android/release/forge
cross: 'true'
os: ubuntu-latest
target: aarch64-linux-android
steps:
- name: Checkout Code
uses: actions/checkout@v6
- name: Setup Protobuf Compiler
if: ${{ matrix.cross == 'false' }}
uses: arduino/setup-protoc@v3
with:
repo-token: ${{ secrets.GITHUB_TOKEN }}
- name: Setup Cross Toolchain
if: ${{ matrix.cross == 'false' }}
uses: taiki-e/setup-cross-toolchain-action@v1
with:
target: ${{ matrix.target }}
- name: Add Rust target
if: ${{ matrix.cross == 'false' }}
run: rustup target add ${{ matrix.target }}
- name: Set Rust Flags
if: '!(contains(matrix.target, ''-unknown-linux-'') || contains(matrix.target, ''-android''))'
run: echo "RUSTFLAGS=-C target-feature=+crt-static" >> $GITHUB_ENV
- name: Build Binary
uses: ClementTsang/cargo-action@v0.0.7
with:
command: build --release
args: '--target ${{ matrix.target }}'
use-cross: ${{ matrix.cross }}
cross-version: '0.2.5'
env:
RUSTFLAGS: ${{ env.RUSTFLAGS }}
POSTHOG_API_SECRET: ${{secrets.POSTHOG_API_SECRET}}
APP_VERSION: ${{ needs.draft_release_pr.outputs.crate_release_name }}
concurrency:
group: ${{ github.workflow }}-${{ github.ref }}