Skip to content

Commit

Permalink
add units inference as downstreamOC
Browse files Browse the repository at this point in the history
  • Loading branch information
d367wang committed Jun 5, 2021
1 parent 73690ea commit bb1653c
Show file tree
Hide file tree
Showing 2 changed files with 13 additions and 1 deletion.
12 changes: 12 additions & 0 deletions .ci-build.sh
Original file line number Diff line number Diff line change
Expand Up @@ -104,6 +104,18 @@ if [[ "${GROUP}" == downstream* && "${SLUGOWNER}" == "opprop" ]]; then
clone_downstream $VALUE_GIT $VALUE_BRANCH
test_downstream $VALUE_GIT $VALUE_COMMAND
fi

# Unit inference test
if [[ "${GROUP}" == "downstream-units-inference" ]]; then
UNIT_GIT=units-inference
UNIT_BRANCH=master
UNIT_COMMAND="./gradlew build"

./gradlew testLibJar

clone_downstream $UNIT_GIT $UNIT_BRANCH
test_downstream $UNIT_GIT $UNIT_COMMAND
fi
fi

echo Exiting "$(cd "$(dirname "$0")" && pwd -P)/$(basename "$0")" in `pwd`
2 changes: 1 addition & 1 deletion .github/workflows/main.yml
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@ jobs:
strategy:
fail-fast: false
matrix:
group: [ cfi-tests, downstream-value-inference ]
group: [ cfi-tests, downstream-value-inference, downstream-units-inference ]
jdk: [ 8, 11 ]
runs-on: ubuntu-latest
steps:
Expand Down

0 comments on commit bb1653c

Please sign in to comment.