We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
2 parents 54262da + ee90de5 commit 393d721Copy full SHA for 393d721
ci/integration.sh
@@ -76,23 +76,31 @@ function check_fmt_base {
76
fi
77
}
78
79
+function show_head {
80
+ local head=$(git rev-parse HEAD)
81
+ echo "Head commit of ${INTEGRATION}: $head"
82
+}
83
+
84
case ${INTEGRATION} in
85
cargo)
86
git clone --depth=1 https://github.com/rust-lang/${INTEGRATION}.git
87
cd ${INTEGRATION}
88
+ show_head
89
export CFG_DISABLE_CROSS_TESTS=1
90
check_fmt_with_all_tests
91
cd -
92
;;
93
crater)
94
git clone --depth=1 https://github.com/rust-lang-nursery/${INTEGRATION}.git
95
96
97
check_fmt_with_lib_tests
98
99
100
*)
101
102
103
104
105
106
0 commit comments