We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent cef7048 commit f9cc0a9Copy full SHA for f9cc0a9
ci/integration-tests.sh
@@ -10,8 +10,9 @@ cargo install --force --debug --path .
10
11
echo "Running integration test for crate ${INTEGRATION}"
12
13
-git clone --depth=1 "https://github.com/${INTEGRATION}.git" checkout
14
-cd checkout || exit 1
+mkdir -p "checkout/$INTEGRATION"
+curl -sSL "https://github.com/$INTEGRATION/archive/master.tar.gz" | tar -xzf - -C "checkout/$INTEGRATION"
15
+cd "checkout/$INTEGRATION" || exit 1
16
17
# run clippy on a project, try to be verbose and trigger as many warnings as possible for greater coverage
18
RUST_BACKTRACE=full \
0 commit comments