Skip to content

Commit 73690ea

Browse files
committed
add downstream value inference
1 parent 2e4ccc0 commit 73690ea

File tree

2 files changed

+13
-1
lines changed

2 files changed

+13
-1
lines changed

.ci-build.sh

Lines changed: 12 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -92,6 +92,18 @@ if [[ "${GROUP}" == downstream* && "${SLUGOWNER}" == "opprop" ]]; then
9292
clone_downstream $SECURITY_GIT $SECURITY_BRANCH
9393
test_downstream $SECURITY_GIT $SECURITY_COMMAND
9494
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
95107
fi
96108

97109
echo Exiting "$(cd "$(dirname "$0")" && pwd -P)/$(basename "$0")" in `pwd`

.github/workflows/main.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,7 @@ jobs:
1313
strategy:
1414
fail-fast: false
1515
matrix:
16-
group: [ cfi-tests, downstream-ontology, downstream-security-demo ]
16+
group: [ cfi-tests, downstream-value-inference ]
1717
jdk: [ 8, 11 ]
1818
runs-on: ubuntu-latest
1919
steps:

0 commit comments

Comments
 (0)