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 @@ -92,6 +92,18 @@ if [[ "${GROUP}" == downstream* && "${SLUGOWNER}" == "opprop" ]]; then
92
92
clone_downstream $SECURITY_GIT $SECURITY_BRANCH
93
93
test_downstream $SECURITY_GIT $SECURITY_COMMAND
94
94
fi
95
+
96
+ # Value inference test
97
+ if [[ " ${GROUP} " == " downstream-value-inference" ]]; then
98
+ VALUE_GIT=value-inference
99
+ VALUE_BRANCH=master
100
+ VALUE_COMMAND=" ./gradlew build"
101
+
102
+ ./gradlew testLibJar
103
+
104
+ clone_downstream $VALUE_GIT $VALUE_BRANCH
105
+ test_downstream $VALUE_GIT $VALUE_COMMAND
106
+ fi
95
107
fi
96
108
97
109
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-ontology, downstream-security-demo ]
16
+ group : [ cfi-tests, downstream-value-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