File tree Expand file tree Collapse file tree 2 files changed +25
-5
lines changed Expand file tree Collapse file tree 2 files changed +25
-5
lines changed Original file line number Diff line number Diff line change 21
21
steps :
22
22
- uses : actions/checkout@v4
23
23
- uses : dtolnay/install-buck2@latest
24
- - run : git submodule update --init rust
25
- - run : git submodule update --init library/backtrace
26
- working-directory : rust
27
- - run : git submodule update --init library/stdarch
28
- working-directory : rust
24
+ - run : ./submodule_init.sh
29
25
- run : buck2 run stage2:rustc -- --version --verbose
Original file line number Diff line number Diff line change
1
+ name : Reindeer
2
+
3
+ on :
4
+ push :
5
+ pull_request :
6
+ workflow_dispatch :
7
+ schedule : [cron: "40 1 * * *"]
8
+
9
+ permissions :
10
+ contents : read
11
+
12
+ jobs :
13
+ reindeer :
14
+ name : Reindeer
15
+ runs-on : ubuntu-latest
16
+ timeout-minutes : 45
17
+ steps :
18
+ - uses : actions/checkout@v4
19
+ - uses : dtolnay/rust-toolchain@stable
20
+ - uses : dtolnay/install@reindeer
21
+ - run : ./submodule_init.sh
22
+ - run : reindeer buckify
23
+ - name : Check reindeer-generated BUCK file up to date
24
+ run : git diff --exit-code
You can’t perform that action at this time.
0 commit comments