File tree Expand file tree Collapse file tree 2 files changed +5
-2
lines changed
compiler/test/dotty/tools/scripting Expand file tree Collapse file tree 2 files changed +5
-2
lines changed Original file line number Diff line number Diff line change @@ -181,7 +181,7 @@ jobs:
181181 uses : actions/checkout@v2
182182
183183 - name : Test
184- run : sbt ";scala3-bootstrapped/compile ;scala3-bootstrapped/test"
184+ run : sbt ";dist/pack ; scala3-bootstrapped/compile ;scala3-bootstrapped/test"
185185 shell : cmd
186186
187187 - name : Scala.js Test
Original file line number Diff line number Diff line change @@ -31,7 +31,10 @@ class ClasspathTests:
3131 case None => sys.error(s " test script not found: ${testScriptName}" )
3232 case Some (file) => file
3333
34- val relpath = testScript.toPath.relpath.norm
34+ val relpath = Some (testScript.toPath.relpath.norm).map {
35+ case s if cygwin => s " $$ (cygpath -aw $s) "
36+ case s => s
37+ }
3538 printf(" ===> hashbangClasspathVerifyTest for script [%s]\n " , relpath)
3639 printf(" bash is [%s]\n " , bashExe)
3740
You can’t perform that action at this time.
0 commit comments