File tree Expand file tree Collapse file tree 2 files changed +34
-22
lines changed Expand file tree Collapse file tree 2 files changed +34
-22
lines changed Original file line number Diff line number Diff line change @@ -201,28 +201,6 @@ jobs:
201
201
cd bench
202
202
RUSTFLAGS="--cfg=ldk_bench --cfg=require_route_graph_test" cargo bench
203
203
204
- check_commits :
205
- runs-on : self-hosted
206
- env :
207
- TOOLCHAIN : stable
208
- steps :
209
- - name : Checkout source code
210
- uses : actions/checkout@v4
211
- with :
212
- fetch-depth : 0
213
- - name : Install Rust ${{ env.TOOLCHAIN }} toolchain
214
- run : |
215
- curl --proto '=https' --tlsv1.2 -sSf https://sh.rustup.rs | sh -s -- -y --profile=minimal --default-toolchain ${{ env.TOOLCHAIN }}
216
- - name : Fetch full tree and rebase on upstream
217
- run : |
218
- git remote add upstream https://github.com/lightningdevkit/rust-lightning
219
- git fetch upstream
220
- export GIT_COMMITTER_EMAIL="[email protected] "
221
- export GIT_COMMITTER_NAME="RL CI"
222
- git rebase upstream/${{ github.base_ref }}
223
- - name : For each commit, run cargo check (including in fuzz)
224
- run : ci/check-each-commit.sh upstream/${{ github.base_ref }}
225
-
226
204
check_release :
227
205
runs-on : ubuntu-latest
228
206
env :
Original file line number Diff line number Diff line change
1
+ name : CI check_commits
2
+
3
+ on :
4
+ pull_request :
5
+ branches-ignore :
6
+ - master
7
+
8
+ concurrency :
9
+ group : ${{ github.workflow }}-${{ github.ref }}
10
+ cancel-in-progress : true
11
+
12
+ jobs :
13
+ check_commits :
14
+ runs-on : self-hosted
15
+ env :
16
+ TOOLCHAIN : stable
17
+ steps :
18
+ - name : Checkout source code
19
+ uses : actions/checkout@v4
20
+ with :
21
+ fetch-depth : 0
22
+ - name : Install Rust ${{ env.TOOLCHAIN }} toolchain
23
+ run : |
24
+ curl --proto '=https' --tlsv1.2 -sSf https://sh.rustup.rs | sh -s -- -y --profile=minimal --default-toolchain ${{ env.TOOLCHAIN }}
25
+ - name : Fetch full tree and rebase on upstream
26
+ run : |
27
+ git remote add upstream https://github.com/lightningdevkit/rust-lightning
28
+ git fetch upstream
29
+ export GIT_COMMITTER_EMAIL="[email protected] "
30
+ export GIT_COMMITTER_NAME="RL CI"
31
+ git rebase upstream/${{ github.base_ref }}
32
+ - name : For each commit, run cargo check (including in fuzz)
33
+ run : ci/check-each-commit.sh upstream/${{ github.base_ref }}
34
+
You can’t perform that action at this time.
0 commit comments