File tree Expand file tree Collapse file tree 1 file changed +8
-0
lines changed Expand file tree Collapse file tree 1 file changed +8
-0
lines changed Original file line number Diff line number Diff line change @@ -76,23 +76,31 @@ function check_fmt_base {
76
76
fi
77
77
}
78
78
79
+ function show_head {
80
+ local head=$( git rev-parse HEAD)
81
+ echo " Head commit of ${INTEGRATION} : $head "
82
+ }
83
+
79
84
case ${INTEGRATION} in
80
85
cargo)
81
86
git clone --depth=1 https://github.com/rust-lang/${INTEGRATION} .git
82
87
cd ${INTEGRATION}
88
+ show_head
83
89
export CFG_DISABLE_CROSS_TESTS=1
84
90
check_fmt_with_all_tests
85
91
cd -
86
92
;;
87
93
crater)
88
94
git clone --depth=1 https://github.com/rust-lang-nursery/${INTEGRATION} .git
89
95
cd ${INTEGRATION}
96
+ show_head
90
97
check_fmt_with_lib_tests
91
98
cd -
92
99
;;
93
100
* )
94
101
git clone --depth=1 https://github.com/rust-lang-nursery/${INTEGRATION} .git
95
102
cd ${INTEGRATION}
103
+ show_head
96
104
check_fmt_with_all_tests
97
105
cd -
98
106
;;
You can’t perform that action at this time.
0 commit comments