-
Notifications
You must be signed in to change notification settings - Fork 122
110 lines (89 loc) · 2.72 KB
/
tests.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
name: Tests
on:
workflow_dispatch:
push:
tags:
- "!v*"
branches:
- master
pull_request:
branches:
- master
concurrency:
group: ${{ github.workflow }}-${{ github.ref || github.run_id }}
cancel-in-progress: ${{ github.ref != 'refs/heads/master' }}
env:
TARGET: x86_64-pc-linux-gnu
MAKE_DEBUG: 0
jobs:
e2e-tests:
runs-on: ubuntu-latest
container:
image: defi/ain-builder:latest
options: --privileged --sysctl net.ipv6.conf.all.disable_ipv6=0 --sysctl net.ipv6.conf.default.disable_ipv6=0
env:
GITHUB_PULL_REQUEST: ${{ github.event.number }}
TESTS_FAILFAST: 0
TESTS_COMBINED_LOGS: 500
CARGO_INCREMENTAL: 0
steps:
- name: Checkout base branch and/or merge
if: github.event_name != 'pull_request'
uses: actions/checkout@v4
- name: Checkout pull request head commit
if: github.event_name == 'pull_request'
uses: actions/checkout@v4
with:
ref: ${{ github.event.pull_request.head.sha }}
- name: Populate environment
run: ./make.sh ci-export-vars
- name: Install dependencies
run: ./make.sh ci-setup-deps
- name: Setup user dependencies
run: ./make.sh ci-setup-user-deps
- name: Restore cpp build cache
id: cpp-cache-restore
uses: actions/cache/restore@v3
with:
path: |
./build/depends
./build/src
~/.ccache
key: cpp-${{ env.TARGET }}-${{ env.BUILD_TYPE }}
- name: Rust build cache
uses: Swatinem/rust-cache@v2
id: rust-cache-restore
with:
workspaces: lib -> ../build/lib/target
save-if: ${{ github.ref == 'refs/heads/master' }}
shared-key: ${{ env.TARGET }}
- name: Build binaries
run: ./make.sh build
# Temp. workaround to save space to prevent GH runners from running out
- name: Cleanup cargo deps
run: rm -rf build/lib/target/debug/deps
- name: E2E tests
run: ./make.sh test
rust-tests:
runs-on: ubuntu-latest
container: defi/ain-builder:latest
steps:
- name: Checkout
uses: actions/checkout@v4
- name: Populate environment
run: ./make.sh ci-export-vars
- name: Setup dependencies
run: ./make.sh ci-setup-deps
- name: Setup dependencies for user
run: ./make.sh ci-setup-user-deps
- name: Rust build cache
uses: Swatinem/rust-cache@v2
id: rust-cache-restore
with:
workspaces: lib -> ../build/lib/target
save-if: ${{ github.ref == 'refs/heads/master' }}
shared-key: ${{ env.TARGET }}
- name: Build deps and configure
run: ./make.sh build-deps && ./make.sh build-conf
- name: Rust tests
run: ./make.sh lib test