-
Notifications
You must be signed in to change notification settings - Fork 0
91 lines (91 loc) · 3.03 KB
/
scheduled.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
permissions:
contents: read
on:
push:
branches: [main]
pull_request:
schedule:
- cron: '7 7 * * *'
# Spend CI time only on latest ref: https://github.com/jonhoo/rust-ci-conf/pull/5
concurrency:
group: ${{ github.workflow }}-${{ github.head_ref || github.run_id }}
cancel-in-progress: true
name: rolling
jobs:
# https://twitter.com/mycoliza/status/1571295690063753218
nightly:
runs-on: ubuntu-latest
name: ubuntu / nightly
steps:
- uses: actions/checkout@v4
with:
submodules: true
- name: Cache git folder
id: cache-git
uses: actions/cache@v4
with:
enableCrossOsArchive: true
path: TomHarte
key: git-folder2
- if: steps.cache-git.outputs.cache-hit != 'true'
uses: actions/checkout@v4
with:
repository: 'TomHarte/ProcessorTests'
path: 'TomHarte'
- name: cache-update
if: steps.cache-git.outputs.cache-hit == 'true'
run: cd TomHarte && git pull
- name: Install nightly
uses: dtolnay/rust-toolchain@nightly
- uses: Swatinem/rust-cache@v2
- name: cargo generate-lockfile
if: hashFiles('Cargo.lock') == ''
run: cargo generate-lockfile
- name: cargo test --locked
run: cargo test --locked --all-features --all-targets
env:
# The package is checked out at the same level as the cpu package
# so this ref is one level back.
TOM_HARTE_PROCESSOR_TESTS: "../TomHarte"
# https://twitter.com/alcuadrado/status/1571291687837732873
update:
runs-on: ubuntu-latest
name: ubuntu / beta / updated
# There's no point running this if no Cargo.lock was checked in in the
# first place, since we'd just redo what happened in the regular test job.
# Unfortunately, hashFiles only works in if on steps, so we reepeat it.
# if: hashFiles('Cargo.lock') != ''
steps:
- uses: actions/checkout@v4
with:
submodules: true
- name: Cache git folder
id: cache-git
uses: actions/cache@v4
with:
enableCrossOsArchive: true
path: TomHarte
key: git-folder2
- if: steps.cache-git.outputs.cache-hit != 'true'
uses: actions/checkout@v4
with:
repository: 'TomHarte/ProcessorTests'
path: 'TomHarte'
- name: cache-update
if: steps.cache-git.outputs.cache-hit == 'true'
run: cd TomHarte && git pull
- name: Install beta
if: hashFiles('Cargo.lock') != ''
uses: dtolnay/rust-toolchain@beta
- uses: Swatinem/rust-cache@v2
- name: cargo update
if: hashFiles('Cargo.lock') != ''
run: cargo update
- name: cargo test
if: hashFiles('Cargo.lock') != ''
run: cargo test --locked --all-features --all-targets
env:
RUSTFLAGS: -D deprecated
# The package is checked out at the same level as the cpu package
# so this ref is one level back.
TOM_HARTE_PROCESSOR_TESTS: "../TomHarte"