-
Notifications
You must be signed in to change notification settings - Fork 101
151 lines (129 loc) · 4.35 KB
/
test_pr.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
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
147
148
149
150
151
# TODO:
# - generate shasum for each published zip, include it in metadata.yaml and in the release description
# - consider stripping debug symbols from binaries
# - generate RELEASE.md changelog
# - change ubuntu to alpine in Dockerfile.ci and Dockerfile
# - merge Docker meta into one step
name: test_pr
on:
workflow_dispatch:
workflow_call:
pull_request:
branches:
- master
types: [ opened, synchronize, reopened ]
env:
CRATE_NAME: iggy
GITHUB_TOKEN: ${{ github.token }}
RUST_BACKTRACE: 1
CARGO_TERM_COLOR: always
IGGY_CI_BUILD: true
concurrency:
group: ${{ github.workflow }}-${{ github.event.pull_request.number || github.ref }}
cancel-in-progress: true
jobs:
sanity:
uses: ./.github/workflows/sanity.yml
backwards_compatibility:
uses: ./.github/workflows/backwards_compatibility.yml
needs: sanity
with:
pr_body: ${{ github.event.pull_request.body }}
build_and_test:
needs: sanity
name: ${{ matrix.platform.skip_tests == true && 'build' || 'build and test' }} ${{ matrix.platform.os_name }}
runs-on: ${{ matrix.platform.os }}
timeout-minutes: 45
strategy:
fail-fast: false
matrix:
platform:
- os_name: Linux-x86_64-musl
os: ubuntu-latest
target: x86_64-unknown-linux-musl
cargo_command: cargo
skip_tests: false
- os_name: Windows-x86_64
os: windows-latest
target: x86_64-pc-windows-msvc
skip_tests: true
toolchain:
- stable
# - nightly
# - beta
steps:
- uses: actions/checkout@v4
- name: Cache cargo & target directories
uses: Swatinem/rust-cache@v2
with:
key: "v2"
- name: Install musl-tools, gnome-keyring and keyutils on Linux
run: |
sudo apt-get update --yes && sudo apt-get install --yes musl-tools gnome-keyring keyutils
rm -f $HOME/.local/share/keyrings/*
echo -n "test" | gnome-keyring-daemon --unlock
if: ${{ matrix.platform.os == 'ubuntu-latest' }}
- name: Build binary (Linux)
uses: houseabsolute/actions-rust-cross@v0
with:
command: "build"
target: ${{ matrix.platform.target }}
toolchain: ${{ matrix.toolchain }}
args: "--verbose"
if: ${{ matrix.platform.os == 'ubuntu-latest' }}
- name: Build binary (Windows)
uses: houseabsolute/actions-rust-cross@v0
env:
AWS_LC_SYS_NO_ASM: 1
with:
command: "build"
target: ${{ matrix.platform.target }}
toolchain: ${{ matrix.toolchain }}
args: "--verbose"
if: ${{ matrix.platform.os == 'windows-latest' }}
- name: Run tests
uses: houseabsolute/actions-rust-cross@v0
with:
command: "test"
target: ${{ matrix.platform.target }}
toolchain: ${{ matrix.toolchain }}
args: "--verbose"
if: ${{ !matrix.platform.skip_tests }}
- name: Check CLI examples from README
run: ./scripts/run-examples-from-readme.sh
if: ${{ matrix.platform.os == 'ubuntu-latest' }}
- name: Check if workspace is clean
run: git status | grep "working tree clean" || { git status ; exit 1; }
if: ${{ matrix.platform.os == 'ubuntu-latest' }}
# TODO: below job is nonblocking: temporary solution until we decide whether
# we want to use the new M1 macs for CI, determine cost and performance
build_and_test_macos:
needs: sanity
name: build and test macOS-aarch64
runs-on: flyci-macos-large-latest-m1
timeout-minutes: 30
steps:
- uses: actions/checkout@v4
- uses: dtolnay/rust-toolchain@stable
- name: Cache cargo & target directories
uses: Swatinem/rust-cache@v2
with:
key: "v2"
- name: Build binary
run: cargo build --verbose --target aarch64-apple-darwin
- name: Run tests
run: cargo test --verbose --target aarch64-apple-darwin
finalize_pr:
runs-on: ubuntu-latest
needs:
- sanity
- backwards_compatibility
- build_and_test
if: always()
steps:
- name: Everything is fine
if: ${{ !(contains(needs.*.result, 'failure')) }}
run: exit 0
- name: Some tests failed
if: ${{ contains(needs.*.result, 'failure') }}
run: exit 1