Skip to content

Commit

Permalink
ci: rand requires 1.36
Browse files Browse the repository at this point in the history
  • Loading branch information
cuviper committed Mar 6, 2021
1 parent 12410f8 commit fc629e6
Show file tree
Hide file tree
Showing 4 changed files with 4 additions and 4 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/ci.yaml
Expand Up @@ -14,7 +14,7 @@ jobs:
matrix:
rust: [
1.31.0, # 2018!
1.32.0, # rand
1.36.0, # rand
stable,
beta,
nightly
Expand Down
2 changes: 1 addition & 1 deletion bors.toml
@@ -1,6 +1,6 @@
status = [
"Test (1.31.0)",
"Test (1.32.0)",
"Test (1.36.0)",
"Test (stable)",
"Test (beta)",
"Test (nightly)",
Expand Down
2 changes: 1 addition & 1 deletion ci/rustup.sh
Expand Up @@ -5,6 +5,6 @@
set -ex

ci=$(dirname $0)
for version in 1.31.0 1.32.0 stable beta nightly; do
for version in 1.31.0 1.36.0 stable beta nightly; do
rustup run "$version" "$ci/test_full.sh"
done
2 changes: 1 addition & 1 deletion ci/test_full.sh
Expand Up @@ -28,7 +28,7 @@ if ! check_version $MSRV ; then
fi

FEATURES=(libm serde)
check_version 1.32 && FEATURES+=(rand)
check_version 1.36 && FEATURES+=(rand)
echo "Testing supported features: ${FEATURES[*]}"

set -x
Expand Down

0 comments on commit fc629e6

Please sign in to comment.