Skip to content

Commit

Permalink
TestRustcBootstrap - Add support for 1.39
Browse files Browse the repository at this point in the history
  • Loading branch information
thepowersgang committed Apr 4, 2021
1 parent 52d1be0 commit 5f48998
Showing 1 changed file with 5 additions and 1 deletion.
6 changes: 5 additions & 1 deletion TestRustcBootstrap.sh
Original file line number Diff line number Diff line change
@@ -1,6 +1,7 @@
#!/bin/bash
# Builds rustc with the mrustc stage0 and downloaded stage0
set -e
set -e # Quit script on error
set -u # Error on unset variables

WORKDIR=${WORKDIR:-rustc_bootstrap}/

Expand All @@ -11,6 +12,9 @@ if [[ "$RUSTC_VERSION" == "1.29.0" ]]; then
elif [[ "$RUSTC_VERSION" == "1.19.0" ]]; then
RUSTC_VERSION_NEXT=1.20.0
RUN_RUSTC_SUF=-1.19.0
elif [[ "$RUSTC_VERSION" == "1.39.0" ]]; then
RUSTC_VERSION_NEXT=1.40.0
RUN_RUSTC_SUF=-1.39.0
else
echo "Unknown rustc version"
fi
Expand Down

0 comments on commit 5f48998

Please sign in to comment.