File tree Expand file tree Collapse file tree
Expand file tree Collapse file tree Original file line number Diff line number Diff line change @@ -104,6 +104,18 @@ if [[ "${GROUP}" == downstream* && "${SLUGOWNER}" == "opprop" ]]; then
104104 clone_downstream $VALUE_GIT $VALUE_BRANCH
105105 test_downstream $VALUE_GIT $VALUE_COMMAND
106106 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
107119fi
108120
109121echo Exiting " $( cd " $( dirname " $0 " ) " && pwd -P) /$( basename " $0 " ) " in ` pwd`
Original file line number Diff line number Diff line change 1313 strategy :
1414 fail-fast : false
1515 matrix :
16- group : [ cfi-tests, downstream-value-inference ]
16+ group : [ cfi-tests, downstream-value-inference, downstream-units-inference ]
1717 jdk : [ 8, 11 ]
1818 runs-on : ubuntu-latest
1919 steps :
You can’t perform that action at this time.
0 commit comments