File tree Expand file tree Collapse file tree 2 files changed +13
-1
lines changed Expand file tree Collapse file tree 2 files changed +13
-1
lines changed Original file line number Diff line number Diff line change @@ -104,6 +104,18 @@ if [[ "${GROUP}" == downstream* && "${SLUGOWNER}" == "opprop" ]]; then
104
104
clone_downstream $VALUE_GIT $VALUE_BRANCH
105
105
test_downstream $VALUE_GIT $VALUE_COMMAND
106
106
fi
107
+
108
+ # Unit inference test
109
+ if [[ " ${GROUP} " == " downstream-units-inference" ]]; then
110
+ UNIT_GIT=units-inference
111
+ UNIT_BRANCH=master
112
+ UNIT_COMMAND=" ./gradlew build"
113
+
114
+ ./gradlew testLibJar
115
+
116
+ clone_downstream $UNIT_GIT $UNIT_BRANCH
117
+ test_downstream $UNIT_GIT $UNIT_COMMAND
118
+ fi
107
119
fi
108
120
109
121
echo Exiting " $( cd " $( dirname " $0 " ) " && pwd -P) /$( basename " $0 " ) " in ` pwd`
Original file line number Diff line number Diff line change 13
13
strategy :
14
14
fail-fast : false
15
15
matrix :
16
- group : [ cfi-tests, downstream-value-inference ]
16
+ group : [ cfi-tests, downstream-value-inference, downstream-units-inference ]
17
17
jdk : [ 8, 11 ]
18
18
runs-on : ubuntu-latest
19
19
steps :
You can’t perform that action at this time.
0 commit comments