File tree Expand file tree Collapse file tree 1 file changed +5
-17
lines changed Expand file tree Collapse file tree 1 file changed +5
-17
lines changed Original file line number Diff line number Diff line change 59
59
echo "Using Rust commit: $RUST_COMMIT"
60
60
echo "RUST_COMMIT=$RUST_COMMIT" >> $GITHUB_ENV
61
61
62
- # This is a shortcut to allow caching. If we don't manually check out Rust here,
63
- # the Athena CLI tool will refuse to check it out since the cache will have
64
- # already restored files into the same directory.
65
- # This command won't check out submodules recursively. The cache restore will do
66
- # this for us, saving time.
67
- - name : Check out Rust toolchain
68
- uses : actions/checkout@v4
69
- with :
70
- repository : rust-lang/rust
71
- ref : ${{ env.RUST_COMMIT }}
72
- path : toolchain/rust
73
-
74
62
- uses : actions/cache@v4
75
63
name : Cache Athena build
76
64
with :
@@ -86,11 +74,11 @@ jobs:
86
74
name : Cache Rust toolchain
87
75
with :
88
76
path : |
89
- toolchain/rust/build
90
- toolchain/rust/library
91
- toolchain/rust/src/doc
92
- toolchain/rust/src/llvm-project
93
- toolchain/rust/src/tools
77
+ toolchain/rust/**
78
+ # toolchain/rust/library
79
+ # toolchain/rust/src/doc
80
+ # toolchain/rust/src/llvm-project
81
+ # toolchain/rust/src/tools
94
82
key : ${{ matrix.cachekey }}-rusttoolchain-${{ env.RUST_COMMIT }}
95
83
96
84
- name : Build
You can’t perform that action at this time.
0 commit comments