From 681165e84c35fcc760977c799aa1372ebdd83f46 Mon Sep 17 00:00:00 2001 From: René van Dorst Date: Sun, 20 Aug 2023 23:26:22 +0200 Subject: add embassy-net-adin1110 to .github/ci/test.sh --- .github/ci/test.sh | 2 ++ 1 file changed, 2 insertions(+) (limited to '.github/ci/test.sh') diff --git a/.github/ci/test.sh b/.github/ci/test.sh index 2892bcf8d..04f4fc7c4 100755 --- a/.github/ci/test.sh +++ b/.github/ci/test.sh @@ -28,3 +28,5 @@ cargo test --manifest-path ./embassy-rp/Cargo.toml --no-default-features --featu cargo test --manifest-path ./embassy-stm32/Cargo.toml --no-default-features --features nightly,stm32f429vg,exti,time-driver-any,exti cargo test --manifest-path ./embassy-stm32/Cargo.toml --no-default-features --features nightly,stm32f732ze,exti,time-driver-any,exti cargo test --manifest-path ./embassy-stm32/Cargo.toml --no-default-features --features nightly,stm32f769ni,exti,time-driver-any,exti + +cargo test --manifest-path ./embassy-net-adin1110/Cargo.toml -- cgit From a2a26f489b81a0ad34c5244f2acfde2ecb9951fe Mon Sep 17 00:00:00 2001 From: Dario Nieuwenhuis Date: Thu, 14 Sep 2023 18:04:43 +0200 Subject: ci: set net.git-fetch-with-cli=true --- .github/ci/test.sh | 4 ++++ 1 file changed, 4 insertions(+) (limited to '.github/ci/test.sh') 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 export CARGO_HOME=/ci/cache/cargo export CARGO_TARGET_DIR=/ci/cache/target +# needed for "dumb HTTP" transport support +# used when pointing stm32-metapac to a CI-built one. +export CARGO_NET_GIT_FETCH_WITH_CLI=true + hashtime restore /ci/cache/filetime.json || true hashtime save /ci/cache/filetime.json -- cgit