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 1d0f625 commit 8df2715Copy full SHA for 8df2715
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