File tree Expand file tree Collapse file tree 2 files changed +10
-1
lines changed Expand file tree Collapse file tree 2 files changed +10
-1
lines changed Original file line number Diff line number Diff line change @@ -54,6 +54,11 @@ matrix:
5454 scala : 2.12.6
5555 env : TEST_SCALAFIX=true
5656
57+ # run binary compatibility test
58+ - jdk : oraclejdk8
59+ scala : 2.12.6
60+ env : TEST_BINARY_COMPAT=true
61+
5762# | jdk | scala | scala target | scala target version | scalafix test |
5863# | ----------- | --------- | ------------ | -------------------- |---------------|
5964# | openjdk6 | 2.11.12 | jvm | | |
Original file line number Diff line number Diff line change @@ -22,7 +22,11 @@ if [ "$SCALAJS_VERSION" = "" ]; then
2222 if [[ " $TEST_SCALAFIX " == " true" ]]; then
2323 projectPrefix=" scalafixRules"
2424 else
25- projectPrefix=" compat"
25+ if [[ " $TEST_BINARY_COMPAT " == " true" ]]; then
26+ projectPrefix=" binary-compat"
27+ else
28+ projectPrefix=" compat"
29+ fi
2630 fi
2731else
2832 projectPrefix=" compatJS"
You can’t perform that action at this time.
0 commit comments