Skip to content

Commit 5cef19c

Browse files
committed
Adapt to the new way that the Scala.js build does cross-building.
1 parent 7161ea8 commit 5cef19c

File tree

1 file changed

+2
-1
lines changed

1 file changed

+2
-1
lines changed

run.sh

+2-1
Original file line numberDiff line numberDiff line change
@@ -5,6 +5,7 @@ SCALAJS_BRANCH="$2"
55

66
SCALA_VERSION=$(wget -q -O - https://raw.githubusercontent.com/scala/community-builds/$SCALA_BRANCH/nightly.properties | grep '^nightly=' | cut -d '=' -f2)
77
SUFFIX=$(echo $SCALA_BRANCH | tr '.' '_' | cut -d '_' -f1-2)
8+
COMPACT_SUFFIX=$(echo $SUFFIX | tr -d '_')
89

910
echo "Scala branch: $SCALA_BRANCH"
1011
echo "Scala version: $SCALA_VERSION"
@@ -31,5 +32,5 @@ npm install
3132
for TESTRAW in $TESTS; do
3233
TEST=$(echo $TESTRAW | tr '~' ' ')
3334
echo "RUNNING test '$TEST'..."
34-
sbt -J-Xmx5G 'set resolvers in Global += "scala-integration" at "https://scala-ci.typesafe.com/artifactory/scala-integration/"' ++$SCALA_VERSION "$TEST"
35+
sbt -J-Xmx5G 'set resolvers in Global += "scala-integration" at "https://scala-ci.typesafe.com/artifactory/scala-integration/"' "set ThisBuild / cross${COMPACT_SUFFIX}ScalaVersions += \"$SCALA_VERSION\"" "$TEST"
3536
done

0 commit comments

Comments
 (0)