Skip to content

Commit

Permalink
Fixed Firefox build aliases
Browse files Browse the repository at this point in the history
  • Loading branch information
djspiewak committed Feb 12, 2021
1 parent 3231190 commit 20c1be6
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions build.sbt
Original file line number Diff line number Diff line change
Expand Up @@ -140,13 +140,13 @@ val Specs2Version = "4.10.5"
val ScalaCheckVersion = "1.15.2"
val DisciplineVersion = "1.1.3"

replaceCommandAlias("ci", "; project /; headerCheck; scalafmtCheck; clean; test; coreJVM/mimaReportBinaryIssues; root/unidoc213; set Global / useFirefoxEnv := true; coreJS/test; set Global / useFirefoxEnv := false")
replaceCommandAlias("ci", "; project /; headerCheck; scalafmtCheck; clean; test; coreJVM/mimaReportBinaryIssues; root/unidoc213; set Global / useFirefoxEnv := true; testsJS/test; set Global / useFirefoxEnv := false")

addCommandAlias("ciJVM", "; project rootJVM; headerCheck; scalafmtCheck; clean; test; mimaReportBinaryIssues; root/unidoc213")
addCommandAlias("ciJS", "; project rootJS; headerCheck; scalafmtCheck; clean; test")

// we do the firefox ci *only* on core because we're only really interested in IO here
addCommandAlias("ciFirefox", "; set Global / useFirefoxEnv := true; project rootJS; headerCheck; scalafmtCheck; clean; coreJS/test; set Global / useFirefoxEnv := false")
addCommandAlias("ciFirefox", "; set Global / useFirefoxEnv := true; project rootJS; headerCheck; scalafmtCheck; clean; testsJS/test; set Global / useFirefoxEnv := false")

addCommandAlias("prePR", "; root/clean; +root/scalafmtAll; +root/headerCreate")

Expand Down

0 comments on commit 20c1be6

Please sign in to comment.