tmux-copyrat/ci/rustup.sh

11 lines
270 B
Bash
Raw Normal View History

2021-10-23 12:19:46 +02:00
#!/bin/sh
# Use rustup to locally run the same suite of tests as .github/workflows/
# (You should first install/update all of the versions below.)
set -ex
ci=$(dirname $0)
2023-04-02 10:57:01 +02:00
for version in 1.64.0 stable beta nightly; do
2021-10-23 12:19:46 +02:00
rustup run "$version" "$ci/test_full.sh"
done