Skip to content

Commit bb1653c

Browse files
committed
add units inference as downstreamOC
1 parent 73690ea commit bb1653c

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
@@ -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
107119
fi
108120

109121
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-value-inference ]
16+
group: [ cfi-tests, downstream-value-inference, downstream-units-inference ]
1717
jdk: [ 8, 11 ]
1818
runs-on: ubuntu-latest
1919
steps:

0 commit comments

Comments
 (0)