-
Notifications
You must be signed in to change notification settings - Fork 5
163 lines (155 loc) · 5.9 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
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
name: CI
on:
- push
concurrency:
group: ${{ github.workflow }}-${{ github.ref }}
env:
NIGHTLY_TOOLCHAIN: nightly-2023-12-30
jobs:
test:
name: Run tests
runs-on: ubuntu-22.04
steps:
- name: Checkout code
uses: actions/checkout@v4
- name: Install SQLx CLI
run: |
mkdir -p ~/.local/bin
curl -L https://development-content.brioche.dev/tools/sqlx-cli_v0.7.1/sqlx -o ~/.local/bin/sqlx
curl -L https://development-content.brioche.dev/tools/sqlx-cli_v0.7.1/cargo-sqlx -o ~/.local/bin/cargo-sqlx
chmod +x ~/.local/bin/sqlx ~/.local/bin/cargo-sqlx
echo "$HOME/.local/bin" >> $GITHUB_PATH
- name: Check formatting
run: cargo fmt -- --check
- name: Check database schema
run: make check-db-schema
- name: Check Clippy
run: cargo clippy --all -- -Dwarnings
- name: Install runtime distribution packages
run: |
cd crates/brioche/runtime
npm install
- name: Check runtime distribution types
run: |
cd crates/brioche/runtime
npm run check
- name: Check runtime distribution is up to date
run: |
cd crates/brioche/runtime
npm install
npm run build
if [ -n "$(git status --porcelain)" ]; then
git status
echo "NPM build in crates/brioche/runtime is out of date!" >&2
echo "Re-run 'npm run build' and commit the results" >&2
exit 1
fi
- name: Run tests
run: cargo test --all
build:
name: Build artifacts
runs-on: ubuntu-22.04
steps:
- name: Checkout code
uses: actions/checkout@v4
- name: Install Rust nightly toolchain
run: |
rustup toolchain install "$NIGHTLY_TOOLCHAIN" \
--target x86_64-unknown-linux-musl \
--component rust-src
- name: Build Brioche
run: |
cargo build \
--all \
--bin brioche \
--release \
--target=x86_64-unknown-linux-gnu
- name: Build brioche-pack tools
run: |
cargo build \
--all \
--bin brioche-packer \
--bin brioche-ld \
--release \
--target=x86_64-unknown-linux-musl
cargo +"$NIGHTLY_TOOLCHAIN" build \
--all \
--bin brioche-packed-exec \
--bin brioche-packed-userland-exec \
--profile=release-tiny \
--target=x86_64-unknown-linux-musl \
-Z 'build-std=std,panic_abort' \
-Z 'build-std-features=panic_immediate_abort'
- name: Prepare artifact
run: |
mkdir -p artifacts/brioche/x86_64-linux/
mkdir -p artifacts/brioche-pack/x86_64-linux/
cp \
target/x86_64-unknown-linux-gnu/release/brioche \
artifacts/brioche/x86_64-linux/
cp \
target/x86_64-unknown-linux-musl/release/brioche-packer \
target/x86_64-unknown-linux-musl/release/brioche-ld \
target/x86_64-unknown-linux-musl/release-tiny/brioche-packed-exec \
target/x86_64-unknown-linux-musl/release-tiny/brioche-packed-userland-exec \
artifacts/brioche-pack/x86_64-linux/
(cd artifacts/brioche-pack/x86_64-linux/ && tar --zstd -cf ../../brioche/x86_64-linux/brioche-pack.tar.zstd .)
tree --du -h artifacts/brioche-pack
tree --du -h artifacts/brioche
- name: Upload artifact
uses: actions/upload-artifact@v4
with:
name: brioche
if-no-files-found: error
path: artifacts/brioche
push:
name: Push artifacts
if: github.repository == 'brioche-dev/brioche'
needs: [test, build]
runs-on: ubuntu-22.04
steps:
- name: Download artifacts
uses: actions/download-artifact@v4
with:
name: brioche
path: artifacts/brioche
# Prepare the upload for the current commit and branch:
# - The current branch will be uploaded with all artifacts
# - The current commit will be uploaded with most artifacts (with some
# exceptions to avoid wasting space)
# - The current files from the bucket will be downloaded first,
# so that existing files are not overwritten. This is so that file
# hashes never change under the commit e.g. if the GitHub Actions
# workflow is re-run
- name: Prepare upload
run: |
mkdir -p artifacts/uploads/commit artifacts/uploads/branch
cp -r artifacts/brioche/* artifacts/uploads/commit/
cp -r artifacts/brioche/* artifacts/uploads/branch/
rm artifacts/uploads/commit/*/brioche
aws s3 sync \
--endpoint "$S3_ENDPOINT" \
"s3://brioche-dev-development-content/github.com/brioche-dev/brioche/commits/$GITHUB_SHA/" \
artifacts/uploads/commit/
env:
AWS_ACCESS_KEY_ID: ${{ secrets.R2_S3_ACCESS_KEY_ID }}
AWS_SECRET_ACCESS_KEY: ${{ secrets.R2_S3_SECRET_ACCESS_KEY }}
AWS_DEFAULT_REGION: ${{ vars.R2_S3_REGION }}
S3_ENDPOINT: ${{ secrets.R2_S3_ENDPOINT }}
- name: Upload to S3
run: |
aws s3 sync \
--endpoint "$S3_ENDPOINT" \
--delete \
artifacts/uploads/branch/ \
"s3://brioche-dev-development-content/github.com/brioche-dev/brioche/branches/$GITHUB_REF_NAME/"
aws s3 sync \
--endpoint "$S3_ENDPOINT" \
--delete \
artifacts/uploads/commit/ \
"s3://brioche-dev-development-content/github.com/brioche-dev/brioche/commits/$GITHUB_SHA/"
env:
AWS_ACCESS_KEY_ID: ${{ secrets.R2_S3_ACCESS_KEY_ID }}
AWS_SECRET_ACCESS_KEY: ${{ secrets.R2_S3_SECRET_ACCESS_KEY }}
AWS_DEFAULT_REGION: ${{ vars.R2_S3_REGION }}
S3_ENDPOINT: ${{ secrets.R2_S3_ENDPOINT }}