We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
2 parents 35a1e17 + 83bf87b commit 659f424Copy full SHA for 659f424
ci/test.sh
@@ -197,6 +197,22 @@ main() {
197
198
rm -rf "${td}"
199
fi
200
+
201
+ # tst cmake support
202
+ td="$(mkcargotemp -d)"
203
204
+ git clone --depth 1 https://github.com/cross-rs/rust-cmake-hello-world "${td}"
205
206
+ pushd "${td}"
207
+ retry cargo fetch
208
+ if (( ${RUN:-0} )); then
209
+ cross_run --target "${TARGET}"
210
+ else
211
+ "${CROSS[@]}" build --target "${TARGET}" ${CROSS_FLAGS}
212
+ fi
213
+ popd
214
215
+ rm -rf "${td}"
216
}
217
218
cross_run() {
0 commit comments