-
-
Notifications
You must be signed in to change notification settings - Fork 1
254 lines (221 loc) · 8.01 KB
/
ci-cd.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
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
name: CI/CD
on:
push:
branches:
- main
paths:
- '**.rs'
- '**/Cargo.toml'
- '**/Cargo.lock'
pull_request:
branches:
- main
paths:
- '**.rs'
- '**/Cargo.toml'
- '**/Cargo.lock'
workflow_dispatch:
jobs:
lint-and-format:
name: Lint with clippy and check formatting
runs-on: ubuntu-20.04
steps:
- uses: actions/checkout@v2
- name: Install Rust toolchain
uses: actions-rs/toolchain@v1
with:
profile: minimal
toolchain: stable
components: clippy, rustfmt
override: true
- name: Check formatting
run: cargo fmt -- --check
- name: Clippy check
run: cargo clippy -p smithe_backend -p smithe_database -p smithe_lib -p startgg -- -D warnings
build:
needs: lint-and-format
strategy:
matrix:
os: [ubuntu-latest, macos-latest, windows-latest]
include:
- os: ubuntu-latest
target: x86_64-unknown-linux-gnu
- os: macos-latest
target: x86_64-apple-darwin
- os: windows-latest
target: x86_64-pc-windows-msvc
runs-on: ${{ matrix.os }}
steps:
- uses: actions/checkout@v2
- if: matrix.os == 'windows-latest'
name: Install PostgreSQL
uses: ikalnytskyi/action-setup-postgres@v4
# This test is necessary to run cross build
- if: matrix.os == 'ubuntu-latest'
name: Install QEMU user emulation
run: docker run --rm --privileged tonistiigi/binfmt --install all
- if: matrix.os == 'ubuntu-latest'
name: Install cross
run: cargo install cross --git https://github.com/cross-rs/cross
- name: Install Rust toolchain
uses: actions-rs/toolchain@v1
with:
profile: minimal
toolchain: stable
override: true
target: ${{ matrix.target }}
# We use cargo-llvm-cov for tests rather than cargo test to also evaluate test coverage
- name: Install cargo-llvm-cov
uses: taiki-e/install-action@v1
with:
tool: cargo-llvm-cov
- name: Install llvm-tools-preview for cargo-llvm-cov
run: rustup component add llvm-tools-preview
- name: Install trunk
run: cargo install trunk
- name: Cache Rust targets
uses: actions/cache@v3
with:
path: |
~/.cargo/registry
~/.cargo/git
target/
key: ${{ runner.os }}-cargo-${{ hashFiles('**/Cargo.lock') }}
restore-keys: |
${{ runner.os }}-cargo-
- name: Build
run: cargo build --release --all
env:
SERVER_ADDRESS: 'http://127.0.0.1:8080'
SERVER_ADDRESS_2: ${{ secrets.SERVER_ADDRESS_2 }}
RECAPTCHA_SITE_KEY: ${{ secrets.RECAPTCHA_SITE_KEY }}
# ^^^ the front-end looks for keys at compile time, so we need these in
# We need `--test-threads=1` due to a Diesel/postgres bug
- name: Run tests and get coverage
run: |
cargo llvm-cov clean --workspace
cargo llvm-cov --no-report --package smithe_lib --no-default-features -- --exact --nocapture --test-threads=1
cargo llvm-cov report --lcov --output-path ./coverage.lcov
env:
PIDGTM_DATABASE_URL: ${{ secrets.PIDGTM_DATABASE_URL }}
STARTGG_TOKEN: ${{ secrets.STARTGG_TOKEN }}
- name: Upload Code Coverage Results
uses: codecov/codecov-action@v3
with:
file: ./coverage.lcov
env:
CODECOV_TOKEN: ${{ secrets.CODECOV_TOKEN }}
# Conditional step for standard Rust build for non-arm64 targets
- if: matrix.os == 'ubuntu-latest'
name: Cross build pidgtm for arm64
run: |
cross build --release --target aarch64-unknown-linux-gnu
ls -la target/aarch64-unknown-linux-gnu/
env:
SERVER_ADDRESS: 'http://127.0.0.1:8080'
CROSS_CONTAINER_OPTS: '--platform linux/arm64'
- if: matrix.os == 'ubuntu-latest'
name: Upload arm64 pidgtm artifact
uses: actions/upload-artifact@v2
with:
name: pidgtm-aarch64-unknown-linux-gnu
path: target/aarch64-unknown-linux-gnu/release/pidgtm
- if: matrix.os == 'ubuntu-latest'
name: Cross build smithe-backend for arm64
run: |
cross build --release -p smithe_backend --target aarch64-unknown-linux-gnu
ls -la target/aarch64-unknown-linux-gnu/release/
- if: matrix.os == 'ubuntu-latest'
name: Upload arm64 smithe-backend artifact
uses: actions/upload-artifact@v2
with:
name: smithe-backend-aarch64-unknown-linux-gnu
path: target/aarch64-unknown-linux-gnu/release/smithe_backend
# Install wasm32-unknown-unknown target for smithe-frontend
- name: Install wasm32-unknown-unknown target
run: rustup target add wasm32-unknown-unknown
# Trunk build for smithe-frontend
- name: Build smithe-frontend
run: trunk build --release ./frontend/index.html
env:
SERVER_ADDRESS: ${{ secrets.SERVER_ADDRESS_KUBERNETES }}
SERVER_ADDRESS_2: ${{ secrets.SERVER_ADDRESS_2 }}
RECAPTCHA_SITE_KEY: ${{ secrets.RECAPTCHA_SITE_KEY }}
- if: matrix.os == 'ubuntu-latest'
name: Upload Trunk smithe-frontend artifact
uses: actions/upload-artifact@v2
with:
name: smithe-frontend-trunk
path: ./frontend/dist
docker-deploy:
needs: build
runs-on: ubuntu-latest
if: >
(github.event_name == 'push' && github.ref == 'refs/heads/main') ||
github.event_name == 'workflow_dispatch'
steps:
- uses: actions/checkout@v2
- name: Set up Docker Buildx
uses: docker/setup-buildx-action@v3
- name: Download pidgtm artifact
uses: actions/download-artifact@v2
with:
name: pidgtm-aarch64-unknown-linux-gnu
path: target/aarch64-unknown-linux-gnu/release/
- name: Display pidgtm artifact
run: ls -la target/aarch64-unknown-linux-gnu/release/pidgtm
- name: Set Executable Permissions
run: chmod +x target/aarch64-unknown-linux-gnu/release/pidgtm
- name: Download smithe-backend artifact
uses: actions/download-artifact@v2
with:
name: smithe-backend-aarch64-unknown-linux-gnu
path: target/aarch64-unknown-linux-gnu/release/
- name: Display smithe-backend artifact
run: ls -la target/aarch64-unknown-linux-gnu/release/smithe_backend
- name: Set Executable Permissions
run: chmod +x target/aarch64-unknown-linux-gnu/release/smithe_backend
- name: Download smithe-frontend artifact
uses: actions/download-artifact@v2
with:
name: smithe-frontend-trunk
path: ./frontend/dist
- name: Display smithe-frontend artifact
run: ls -la ./frontend/dist
- name: Login to DockerHub
uses: docker/login-action@v3
with:
username: danstaken
password: ${{ secrets.DOCKER_PASSWORD }}
- name: Build and push multi-architecture Docker pidgtm image
uses: docker/build-push-action@v5
with:
context: .
file: Dockerfile-Pidgtm
push: true
tags: danstaken/pidgtm:latest
platforms: linux/arm64
- name: Build and push multi-architecture Docker rust-build-env-arm64 image
uses: docker/build-push-action@v5
with:
context: .
file: Dockerfile-RustBuildEnvArm64
push: true
tags: danstaken/rust-build-env-arm64:latest
platforms: linux/arm64
- name: Build and push multi-architecture Docker smithe-backend image
uses: docker/build-push-action@v5
with:
context: .
file: Dockerfile-SmitheBackend
push: true
tags: danstaken/smithe-backend:latest
platforms: linux/arm64
- name: Build and push multi-architecture Docker smithe-frontend image
uses: docker/build-push-action@v5
with:
context: .
file: Dockerfile-SmitheFrontend
push: true
tags: danstaken/smithe-frontend:latest
platforms: linux/arm64