This repository has been archived by the owner on Jan 11, 2024. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 10
146 lines (124 loc) · 4.05 KB
/
ci.yaml
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
name: CI
on:
push:
branches:
- main
pull_request:
branches:
- '**'
# To add ready_for_review as a trigger we need to list all the defaults.
types:
- opened
- reopened
- synchronize
- ready_for_review
env:
CARGO_INCREMENTAL: '0'
SCCACHE_CACHE_SIZE: 10G
CC: "sccache clang"
CXX: "sccache clang++"
PROFILE: "ci"
jobs:
# Check code formatting; anything that doesn't require compilation.
pre-compile-checks:
name: Pre-compile checks
runs-on: ubuntu-latest
steps:
- name: Check out the project
uses: actions/checkout@v3
- name: Install Rust
uses: dtolnay/rust-toolchain@master
with:
toolchain: nightly
components: rustfmt
- name: Check code formatting
run: make check-fmt
# This is so `make license` doesn't say "bad revision origin/main"
- name: Fetch origin for diff
run: git fetch origin
- name: Check license headers
run: make license
# Test matrix, running tasks from the Makefile.
tests:
# Skip tests on draft PRs, they take a long time, and drafts are for visibility.
if: ${{ !github.event.pull_request.draft }}
needs: [pre-compile-checks]
name: ${{ matrix.make.name }} (${{ matrix.os }}, ${{ matrix.rust }})
runs-on: ${{ matrix.os }}
strategy:
fail-fast: false
matrix:
os: [ubuntu-latest]
rust: [stable, nightly]
make:
- name: Clippy
task: check-clippy
- name: Test
task: test
- name: End-to-End
task: e2e
exclude:
# Not running Clippy on nightly because sometimes it seems to give false positives.
- rust: nightly
make:
name: Clippy
- rust: nightly
make:
name: End-to-end
env:
RUST_BACKTRACE: full
RUSTFLAGS: -Dwarnings
steps:
- name: Check out the project
uses: actions/checkout@v3
- name: Install Tools
uses: ./.github/actions/install-tools
with:
repo-token: ${{ secrets.GITHUB_TOKEN }}
rust: ${{ matrix.rust }}
- name: Setup Cache
uses: ./.github/actions/setup-cache
timeout-minutes: 5
continue-on-error: true
with:
# Caching everything separately, in case they don't ask for the same things to be compiled.
cache-key: ${{ matrix.make.name }}-${{ matrix.os }}-${{ matrix.rust }}-${{ hashFiles('**/Cargo.lock', 'rust-toolchain', 'rust-toolchain.toml') }}
# Not sure why we should ever update a cache that has the hash of the lock file in it.
# In Forest it only contains the rust-toolchain, so it makes sense to update because dependencies could have changed.
cache-update: false
- name: ${{ matrix.make.name }}
run: make ${{ matrix.make.task }}
# Publish Docker image on the main branch
publish:
name: Publish artifacts
needs: [tests]
if: github.ref == 'refs/heads/main'
runs-on: ubuntu-latest
permissions:
packages: write
contents: read
steps:
- name: Check out the project
uses: actions/checkout@v3
- name: Install Tools
uses: ./.github/actions/install-tools
with:
repo-token: ${{ secrets.GITHUB_TOKEN }}
rust: stable
- name: Setup Cache
uses: ./.github/actions/setup-cache
timeout-minutes: 5
continue-on-error: true
with:
# Very likely that the Cargo.lock file will change between PRs,
# but since this only runs on the main branch we can update a single cache.
cache-key: publish-${{ hashFiles('rust-toolchain', 'rust-toolchain.toml') }}
cache-update: true
- name: Docker Build
run: make docker-build
- name: Docker Push
uses: ./.github/actions/docker-push
with:
repo-token: ${{ secrets.GITHUB_TOKEN }}
repo-owner: ${{ github.repository_owner }}
image-name: ${{ github.event.repository.name }}