|
1 |
| -on: [push, pull_request] |
| 1 | +--- # rust-miniscript CI: If you edit this file please update README.md |
| 2 | +on: # yamllint disable-line rule:truthy |
| 3 | + push: |
| 4 | + branches: |
| 5 | + - master |
| 6 | + - 'test-ci/**' |
| 7 | + pull_request: |
2 | 8 |
|
3 | 9 | name: Continuous integration
|
4 | 10 |
|
5 | 11 | jobs:
|
6 |
| - Nightly: |
7 |
| - name: Nightly - Bench + Docs + Fmt |
| 12 | + Stable: # 2 jobs, one per lock file. |
| 13 | + name: Test - stable toolchain |
8 | 14 | runs-on: ubuntu-latest
|
| 15 | + strategy: |
| 16 | + fail-fast: false |
| 17 | + matrix: |
| 18 | + dep: [minimal, recent] |
9 | 19 | steps:
|
10 |
| - - name: Checkout Crate |
11 |
| - uses: actions/checkout@v2 |
12 |
| - - name: Checkout Toolchain |
13 |
| - uses: actions-rs/toolchain@v1 |
| 20 | + - name: "Checkout repo" |
| 21 | + uses: actions/checkout@v4 |
| 22 | + - name: "Checkout maintainer tools" |
| 23 | + uses: actions/checkout@v4 |
14 | 24 | with:
|
15 |
| - profile: minimal |
16 |
| - toolchain: nightly |
17 |
| - override: true |
18 |
| - - name: Install clippy |
| 25 | + repository: rust-bitcoin/rust-bitcoin-maintainer-tools |
| 26 | + path: maintainer-tools |
| 27 | + - name: "Select toolchain" |
| 28 | + uses: dtolnay/rust-toolchain@stable |
| 29 | + - name: "Set dependencies" |
| 30 | + run: cp Cargo-${{ matrix.dep }}.lock Cargo.lock |
| 31 | + - name: "Run test script" |
| 32 | + run: ./maintainer-tools/ci/run_task.sh stable |
| 33 | + |
| 34 | + Nightly: # 2 jobs, one per lock file. |
| 35 | + name: Test - nightly toolchain |
| 36 | + runs-on: ubuntu-latest |
| 37 | + strategy: |
| 38 | + fail-fast: false |
| 39 | + matrix: |
| 40 | + dep: [minimal, recent] |
| 41 | + steps: |
| 42 | + - name: "Checkout repo" |
| 43 | + uses: actions/checkout@v4 |
| 44 | + - name: "Checkout maintainer tools" |
| 45 | + uses: actions/checkout@v4 |
| 46 | + with: |
| 47 | + repository: rust-bitcoin/rust-bitcoin-maintainer-tools |
| 48 | + path: maintainer-tools |
| 49 | + - name: "Select toolchain" |
| 50 | + uses: dtolnay/rust-toolchain@nightly |
| 51 | + - name: "Set dependencies" |
| 52 | + run: cp Cargo-${{ matrix.dep }}.lock Cargo.lock |
| 53 | + - name: "Run test script" |
| 54 | + run: ./maintainer-tools/ci/run_task.sh nightly |
| 55 | + |
| 56 | + MSRV: # 1 jobs, minimal lock file only. |
| 57 | + name: Test - 1.56.1 toolchain |
| 58 | + runs-on: ubuntu-latest |
| 59 | + strategy: |
| 60 | + fail-fast: false |
| 61 | + matrix: |
| 62 | + dep: [minimal] |
| 63 | + steps: |
| 64 | + - name: "Checkout repo" |
| 65 | + uses: actions/checkout@v4 |
| 66 | + - name: "Checkout maintainer tools" |
| 67 | + uses: actions/checkout@v4 |
| 68 | + with: |
| 69 | + repository: rust-bitcoin/rust-bitcoin-maintainer-tools |
| 70 | + path: maintainer-tools |
| 71 | + - name: "Select toolchain" |
| 72 | + uses: dtolnay/rust-toolchain@stable |
| 73 | + with: |
| 74 | + toolchain: "1.56.1" |
| 75 | + - name: "Set dependencies" |
| 76 | + run: cp Cargo-${{ matrix.dep }}.lock Cargo.lock |
| 77 | + - name: "Run test script" |
| 78 | + run: ./maintainer-tools/ci/run_task.sh msrv |
| 79 | + |
| 80 | + Lint: |
| 81 | + name: Lint - nightly toolchain |
| 82 | + runs-on: ubuntu-latest |
| 83 | + strategy: |
| 84 | + fail-fast: false |
| 85 | + matrix: |
| 86 | + dep: [recent] |
| 87 | + steps: |
| 88 | + - name: "Checkout repo" |
| 89 | + uses: actions/checkout@v4 |
| 90 | + - name: "Checkout maintainer tools" |
| 91 | + uses: actions/checkout@v4 |
| 92 | + with: |
| 93 | + repository: rust-bitcoin/rust-bitcoin-maintainer-tools |
| 94 | + path: maintainer-tools |
| 95 | + - name: "Select toolchain" |
| 96 | + uses: dtolnay/rust-toolchain@nightly |
| 97 | + - name: "Install clippy" |
19 | 98 | run: rustup component add clippy
|
20 |
| - - name: Running benchmarks |
21 |
| - env: |
22 |
| - DO_BENCH: true |
23 |
| - run: ./contrib/test.sh |
24 |
| - - name: Building docs |
25 |
| - env: |
26 |
| - DO_DOCS: true |
27 |
| - run: ./contrib/test.sh |
28 |
| - - name: Running formatter |
29 |
| - env: |
30 |
| - DO_FMT: true |
31 |
| - run: ./contrib/test.sh |
32 |
| - - name: Running linter |
33 |
| - env: |
34 |
| - DO_LINT: true |
35 |
| - run: ./contrib/test.sh |
| 99 | + - name: "Set dependencies" |
| 100 | + run: cp Cargo-${{ matrix.dep }}.lock Cargo.lock |
| 101 | + - name: "Run test script" |
| 102 | + run: ./maintainer-tools/ci/run_task.sh lint |
36 | 103 |
|
37 |
| - Int-tests: |
38 |
| - name: Integration tests |
| 104 | + Docs: |
| 105 | + name: Docs - stable toolchain |
39 | 106 | runs-on: ubuntu-latest
|
| 107 | + strategy: |
| 108 | + fail-fast: false |
| 109 | + matrix: |
| 110 | + dep: [recent] |
40 | 111 | steps:
|
41 |
| - - name: Checkout Crate |
42 |
| - uses: actions/checkout@v2 |
43 |
| - - name: Checkout Toolchain |
44 |
| - uses: actions-rs/toolchain@v1 |
| 112 | + - name: "Checkout repo" |
| 113 | + uses: actions/checkout@v4 |
| 114 | + - name: "Checkout maintainer tools" |
| 115 | + uses: actions/checkout@v4 |
45 | 116 | with:
|
46 |
| - profile: minimal |
47 |
| - toolchain: stable |
48 |
| - override: true |
49 |
| - - name: Running integration tests |
50 |
| - run: ./contrib/integration_test.sh |
| 117 | + repository: rust-bitcoin/rust-bitcoin-maintainer-tools |
| 118 | + path: maintainer-tools |
| 119 | + - name: "Select toolchain" |
| 120 | + uses: dtolnay/rust-toolchain@stable |
| 121 | + - name: "Set dependencies" |
| 122 | + run: cp Cargo-${{ matrix.dep }}.lock Cargo.lock |
| 123 | + - name: "Run test script" |
| 124 | + run: ./maintainer-tools/ci/run_task.sh docs |
| 125 | + |
| 126 | + Docsrs: |
| 127 | + name: Docs - nightly toolchain |
| 128 | + runs-on: ubuntu-latest |
| 129 | + strategy: |
| 130 | + fail-fast: false |
| 131 | + matrix: |
| 132 | + dep: [recent] |
| 133 | + steps: |
| 134 | + - name: "Checkout repo" |
| 135 | + uses: actions/checkout@v4 |
| 136 | + - name: "Checkout maintainer tools" |
| 137 | + uses: actions/checkout@v4 |
| 138 | + with: |
| 139 | + repository: rust-bitcoin/rust-bitcoin-maintainer-tools |
| 140 | + path: maintainer-tools |
| 141 | + - name: "Select toolchain" |
| 142 | + uses: dtolnay/rust-toolchain@nightly |
| 143 | + - name: "Set dependencies" |
| 144 | + run: cp Cargo-${{ matrix.dep }}.lock Cargo.lock |
| 145 | + - name: "Run test script" |
| 146 | + run: ./maintainer-tools/ci/run_task.sh docsrs |
51 | 147 |
|
52 |
| - Tests: |
53 |
| - name: Tests |
| 148 | + Bench: |
| 149 | + name: Bench - nightly toolchain |
54 | 150 | runs-on: ubuntu-latest
|
55 | 151 | strategy:
|
| 152 | + fail-fast: false |
56 | 153 | matrix:
|
57 |
| - include: |
58 |
| - - rust: stable |
59 |
| - - rust: beta |
60 |
| - - rust: nightly |
61 |
| - - rust: "1.56.1" |
| 154 | + dep: [recent] |
| 155 | + steps: |
| 156 | + - name: "Checkout repo" |
| 157 | + uses: actions/checkout@v4 |
| 158 | + - name: "Checkout maintainer tools" |
| 159 | + uses: actions/checkout@v4 |
| 160 | + with: |
| 161 | + repository: rust-bitcoin/rust-bitcoin-maintainer-tools |
| 162 | + path: maintainer-tools |
| 163 | + - name: "Select toolchain" |
| 164 | + uses: dtolnay/rust-toolchain@nightly |
| 165 | + - name: "Set dependencies" |
| 166 | + run: cp Cargo-${{ matrix.dep }}.lock Cargo.lock |
| 167 | + - name: "Run test script" |
| 168 | + run: ./maintainer-tools/ci/run_task.sh bench |
| 169 | + |
| 170 | + Format: # 1 jobs, run cargo fmt directly. |
| 171 | + name: Format - nightly toolchain |
| 172 | + runs-on: ubuntu-latest |
| 173 | + strategy: |
| 174 | + fail-fast: false |
| 175 | + steps: |
| 176 | + - name: "Checkout repo" |
| 177 | + uses: actions/checkout@v4 |
| 178 | + - name: "Select toolchain" |
| 179 | + uses: dtolnay/rust-toolchain@nightly |
| 180 | + - name: "Install rustfmt" |
| 181 | + run: rustup component add rustfmt |
| 182 | + - name: "Check formatting" |
| 183 | + run: cargo +nightly fmt --all -- --check |
| 184 | + |
| 185 | + Int-tests: |
| 186 | + name: Integration tests |
| 187 | + runs-on: ubuntu-latest |
62 | 188 | steps:
|
63 | 189 | - name: Checkout Crate
|
64 | 190 | uses: actions/checkout@v2
|
65 | 191 | - name: Checkout Toolchain
|
66 | 192 | uses: actions-rs/toolchain@v1
|
67 | 193 | with:
|
68 | 194 | profile: minimal
|
69 |
| - toolchain: ${{ matrix.rust }} |
| 195 | + toolchain: stable |
70 | 196 | override: true
|
71 |
| - - name: Running cargo |
72 |
| - env: |
73 |
| - DO_FEATURE_MATRIX: true |
74 |
| - DO_NO_STD: true |
75 |
| - run: ./contrib/test.sh |
| 197 | + - name: Running integration tests |
| 198 | + run: ./contrib/integration_test.sh |
76 | 199 |
|
77 | 200 | Embedded:
|
78 | 201 | runs-on: ubuntu-latest
|
|
0 commit comments