We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 6026b84 commit ac4a82eCopy full SHA for ac4a82e
.github/workflows/ci.yml
@@ -54,9 +54,9 @@ jobs:
54
ref: main
55
path: athena
56
57
- - name: Source config.sh and export RUST_COMMIT
+ - name: Get Rust commit
58
run: |
59
- source toolchain/config.sh
+ RUST_COMMIT=$(cat toolchain/rust_commit.txt)
60
echo "Using Rust commit: $RUST_COMMIT"
61
echo "RUST_COMMIT=$RUST_COMMIT" >> $GITHUB_ENV
62
config.sh
@@ -2,7 +2,7 @@
2
3
param1=${1:-}
4
5
-export RUST_COMMIT=051478957371ee0084a7c0913941d2a8c4757bb9
+export RUST_COMMIT=$(cat rust_commit.txt)
6
7
# If -rust_commit specified then only export the rust commit variable
8
if [ "$param1" == "-rust_commit" ]; then
rust_commit.txt
@@ -0,0 +1 @@
1
+051478957371ee0084a7c0913941d2a8c4757bb9
0 commit comments