You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Test stdlib-bootstrapped TASTy-MiMa in CI (#18158)
This addition does have some fragility with the current TASTy numbering
scheme. The test script will change the TASTy version and recompile the
compiler and library with this version to allow TASTy MiMa to read those
files.
When we change to a new major version, there is the potential for this
TASTy to not be readable from the latest release of TASTy MiMa. In that
scenario, we would disable this test until a new version of TASTy MiMa
is published.
MINOR_TASTY_VERSION=$(grep -oE 'val MinorVersion: Int = ([0-9]+)'$TASTY_FROMAT_FILE| grep -oE '[0-9]+')
9
+
EXPERIMENTAL_TASTY_VERSION=$(grep -oE 'val ExperimentalVersion: Int = ([0-9]+)'$TASTY_FROMAT_FILE| grep -oE '[0-9]+')
10
+
11
+
setTastyVersion() {
12
+
sed -i -E -e "s/val MinorVersion: Int = [0-9]+/val MinorVersion: Int = $1/" -e "s/val ExperimentalVersion: Int = [0-9]+/val ExperimentalVersion: Int = $2/"$TASTY_FROMAT_FILE
0 commit comments