-
Notifications
You must be signed in to change notification settings - Fork 20
44 lines (37 loc) · 1.18 KB
/
weekly-canary-build.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
name: Weekly Canary Build
on:
schedule:
- cron: '0 0 * * Mon'
jobs:
weekly-canary-build:
strategy:
matrix:
rust-channel: [stable, beta, nightly]
runs-on: ubuntu-20.04
concurrency:
group: ${{ github.workflow }}-${{ github.ref }}
steps:
- uses: actions/checkout@v4
- name: Install tools
uses: taiki-e/install-action@v2
with:
- name: Install targets
run: |
rustup target add thumbv7em-none-eabihf
rustup component add rust-src
rustup component add rustfmt
- name: Update and set default Rust
run: |
rustup update ${{ matrix.rust-channel }}
rustup default ${{ matrix.rust-channel }}
- name: Find slug name
run: |
slug=$(./describe.sh "${GITHUB_REF}")
echo "Building with slug '${slug}'"
echo "slug=${slug}" >> "${GITHUB_ENV}"
- name: Build and test
env: # Or as an environment variable
HIDDEN_MESSAGE: ${{ secrets.HIDDEN_MESSAGE }}
run: |
./build.sh "./rust-exercises-${{ env.slug }}"