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:
54
54
scala : 2.12.6
55
55
env : TEST_SCALAFIX=true
56
56
57
+ # run binary compatibility test
58
+ - jdk : oraclejdk8
59
+ scala : 2.12.6
60
+ env : TEST_BINARY_COMPAT=true
61
+
57
62
# | jdk | scala | scala target | scala target version | scalafix test |
58
63
# | ----------- | --------- | ------------ | -------------------- |---------------|
59
64
# | openjdk6 | 2.11.12 | jvm | | |
Original file line number Diff line number Diff line change @@ -22,7 +22,11 @@ if [ "$SCALAJS_VERSION" = "" ]; then
22
22
if [[ " $TEST_SCALAFIX " == " true" ]]; then
23
23
projectPrefix=" scalafixRules"
24
24
else
25
- projectPrefix=" compat"
25
+ if [[ " $TEST_BINARY_COMPAT " == " true" ]]; then
26
+ projectPrefix=" binary-compat"
27
+ else
28
+ projectPrefix=" compat"
29
+ fi
26
30
fi
27
31
else
28
32
projectPrefix=" compatJS"
You can’t perform that action at this time.
0 commit comments