aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rwxr-xr-x.github/ci/build-stable.sh4
-rwxr-xr-x.github/ci/build.sh4
-rwxr-xr-x.github/ci/test.sh4
3 files changed, 12 insertions, 0 deletions
diff --git a/.github/ci/build-stable.sh b/.github/ci/build-stable.sh
index 0dadd6102..8012f6923 100755
--- a/.github/ci/build-stable.sh
+++ b/.github/ci/build-stable.sh
@@ -8,6 +8,10 @@ export RUSTUP_HOME=/ci/cache/rustup
8export CARGO_HOME=/ci/cache/cargo 8export CARGO_HOME=/ci/cache/cargo
9export CARGO_TARGET_DIR=/ci/cache/target 9export CARGO_TARGET_DIR=/ci/cache/target
10 10
11# needed for "dumb HTTP" transport support
12# used when pointing stm32-metapac to a CI-built one.
13export CARGO_NET_GIT_FETCH_WITH_CLI=true
14
11hashtime restore /ci/cache/filetime.json || true 15hashtime restore /ci/cache/filetime.json || true
12hashtime save /ci/cache/filetime.json 16hashtime save /ci/cache/filetime.json
13 17
diff --git a/.github/ci/build.sh b/.github/ci/build.sh
index 36bf7e7dc..78ab976df 100755
--- a/.github/ci/build.sh
+++ b/.github/ci/build.sh
@@ -14,6 +14,10 @@ if [ -f /ci/secrets/teleprobe-token.txt ]; then
14 export TELEPROBE_CACHE=/ci/cache/teleprobe_cache.json 14 export TELEPROBE_CACHE=/ci/cache/teleprobe_cache.json
15fi 15fi
16 16
17# needed for "dumb HTTP" transport support
18# used when pointing stm32-metapac to a CI-built one.
19export CARGO_NET_GIT_FETCH_WITH_CLI=true
20
17hashtime restore /ci/cache/filetime.json || true 21hashtime restore /ci/cache/filetime.json || true
18hashtime save /ci/cache/filetime.json 22hashtime save /ci/cache/filetime.json
19 23
diff --git a/.github/ci/test.sh b/.github/ci/test.sh
index 04f4fc7c4..af0f21c2a 100755
--- a/.github/ci/test.sh
+++ b/.github/ci/test.sh
@@ -8,6 +8,10 @@ export RUSTUP_HOME=/ci/cache/rustup
8export CARGO_HOME=/ci/cache/cargo 8export CARGO_HOME=/ci/cache/cargo
9export CARGO_TARGET_DIR=/ci/cache/target 9export CARGO_TARGET_DIR=/ci/cache/target
10 10
11# needed for "dumb HTTP" transport support
12# used when pointing stm32-metapac to a CI-built one.
13export CARGO_NET_GIT_FETCH_WITH_CLI=true
14
11hashtime restore /ci/cache/filetime.json || true 15hashtime restore /ci/cache/filetime.json || true
12hashtime save /ci/cache/filetime.json 16hashtime save /ci/cache/filetime.json
13 17