forked from fedimint/fedimint
-
Notifications
You must be signed in to change notification settings - Fork 0
101 lines (89 loc) · 3.9 KB
/
ci-backwards-compatibility.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
# This is a basic workflow to help you get started with Actions
name: "Backwards-Compatibility"
env:
PERFIT_SERVER: https://perfit.dev.fedimint.org
# Controls when the workflow will run
on:
# Triggers the workflow on push or pull request events but only for the "main" branch and release tags
push:
branches: [ "main", "master", "devel", "releases/v*" ]
tags:
- 'v*' # Push events to matching v*, i.e. v1.0, v20.15.10
pull_request:
branches: [ "main", "master", "devel", "releases/v*" ]
merge_group:
branches: [ "main", "master", "devel", "releases/v*" ]
# Allows you to run this workflow manually from the Actions tab
workflow_dispatch:
# https://stackoverflow.com/questions/66335225/how-to-cancel-previous-runs-in-the-pr-when-you-push-new-commitsupdate-the-curre
concurrency:
group: ${{ github.workflow }}-${{ github.event.pull_request.number || github.ref }}
cancel-in-progress: true
# A workflow run is made up of one or more jobs that can run sequentially or in parallel
jobs:
tests:
if: github.repository == 'fedimint/fedimint'
name: "Backwards-compatibility tests"
runs-on: [self-hosted, linux]
timeout-minutes: 60
steps:
- uses: actions/checkout@v4
- name: Prepare
uses: ./.github/actions/prepare
- uses: cachix/install-nix-action@v30
with:
nix_path: nixpkgs=channel:nixos-23.11
extra_nix_config: |
connect-timeout = 15
stalled-download-timeout = 15
- uses: cachix/cachix-action@v15
with:
name: fedimint
authToken: '${{ secrets.CACHIX_AUTH_TOKEN }}'
continue-on-error: true
- name: Backwards-compatibility tests
run: |
# TODO: should we create a separate perfit metric for merge queue vs pr push?
# run a slimmed down back-compat test for PR push or each major version for merge queue
if [[ "${{ github.event_name }}" == "merge_group" ]]; then
PERFIT_METRIC="90S3yoXDQ-SXB0UbXG4qHQ"
VERSIONS_TO_TEST="v0.3.4-rc.1 v0.4.4 v0.5.0-rc.2"
else
PERFIT_METRIC="aPuCAjrFT7uE5Oax_T4sMw"
VERSIONS_TO_TEST="v0.5.0-rc.2"
fi
# the default tmp dir is too long (/home/ubuntu/actions-runner/_work/_temp/)
# we need to use `nix develop -c` to be able to use `nix build` inside of backwards-compatibility-test
# Disable `sccache`, it seems incompatible with self-hosted runner sandbox for some reason, and
# it doesn't benefit us much here anyway.
env \
TMPDIR=/tmp \
CARGO_PROFILE=ci \
PERFIT_ACCESS_TOKEN="${{ secrets.PERFIT_ACCESS_TOKEN }}" \
nix develop -c \
nix shell 'github:rustshop/fs-dir-cache?rev=e9752d00ee16778c9d3d0b93a09c49c44013ac17' -c \
nix run 'github:rustshop/perfit?rev=a2ea3bae86b0e70d2ebdbca1fd16a843b7f0a3bd#perfit' -- \
run \
--metric "$PERFIT_METRIC" \
--metadata "commit=${LAST_COMMIT_SHA}" \
-- \
scripts/ci/run-in-fs-dir-cache.sh backward-compat \
env -u RUSTC_WRAPPER \
env FM_DEVIMINT_DISABLE_MODULE_LNV2=1 \
./scripts/tests/test-ci-all-backcompat.sh "$VERSIONS_TO_TEST"
notifications:
if: always() && github.repository == 'fedimint/fedimint' && github.event_name != 'merge_group'
name: "Notifications"
timeout-minutes: 1
runs-on: [self-hosted, linux]
needs: [ tests ]
steps:
- name: Discord notifications on failure
# https://stackoverflow.com/a/74562058/134409
if: ${{ always() && contains(needs.*.result, 'failure') }}
# https://github.com/marketplace/actions/actions-status-discord
uses: sarisia/actions-status-discord@v1
with:
webhook: ${{ secrets.DISCORD_WEBHOOK }}
# current job is a success, but that's not what we're interested in
status: failure