Skip to content

Commit

Permalink
Use git-scripts instead of plume-scripts (#106)
Browse files Browse the repository at this point in the history
  • Loading branch information
Ao-senXiong authored Jun 28, 2024
1 parent 16bffb0 commit a31ee15
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions .ci-build-without-test.sh
Original file line number Diff line number Diff line change
Expand Up @@ -12,17 +12,17 @@ else
export JAVA_HOME=${JAVA_HOME:-$(dirname $(dirname $(readlink -f $(which javac))))}
fi

if [ -d "/tmp/plume-scripts" ] ; then
git -C /tmp/plume-scripts pull -q
if [ -d "/tmp/git-scripts" ] ; then
git -C /tmp/git-scripts pull -q
else
git -C /tmp clone --depth 1 -q https://github.com/eisop-plume-lib/plume-scripts.git
git -C /tmp clone --depth 1 -q https://github.com/eisop-plume-lib/git-scripts.git
fi


export CFI="${CFI:-$(pwd -P)/../checker-framework-inference}"

## Build Checker Framework Inference (which also clones & builds dependencies)
/tmp/plume-scripts/git-clone-related opprop checker-framework-inference ${CFI}
/tmp/git-scripts/git-clone-related opprop checker-framework-inference ${CFI}
(cd $CFI && ./.ci-build-without-test.sh)

./gradlew assemble
Expand Down

0 comments on commit a31ee15

Please sign in to comment.