Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

infra: pgjdbc, migrate Maven -> Gradle #7783

Merged
merged 1 commit into from Mar 30, 2020
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Jump to
Jump to file
Failed to load files.
Diff view
Diff view
2 changes: 2 additions & 0 deletions .ci/jsoref-spellchecker/whitelist.words
Expand Up @@ -1011,8 +1011,10 @@ patreon
Paulicke
paypal
pbludov
Pcheckstyle
pdf
Peclipse
Penable
perl
pex
pgjdbc
Expand Down
7 changes: 4 additions & 3 deletions .ci/wercker.sh
Expand Up @@ -53,9 +53,10 @@ no-error-pgjdbc)
--non-recursive org.codehaus.mojo:exec-maven-plugin:1.3.1:exec)
echo CS_version: ${CS_POM_VERSION}
checkout_from https://github.com/pgjdbc/pgjdbc.git
cd .ci-temp/pgjdbc/pgjdbc
mvn -e checkstyle:check -Dcheckstyle.version=${CS_POM_VERSION}
cd ../../
cd .ci-temp/pgjdbc
./gradlew --no-parallel --no-daemon checkstyleAll \
-PenableMavenLocal -Pcheckstyle.version=${CS_POM_VERSION}
cd ../
rm -rf pgjdbc
;;

Expand Down
5 changes: 2 additions & 3 deletions wercker.yml
Expand Up @@ -13,9 +13,8 @@ build:
echo "PR:"$PR
fi
echo "------"
echo "Link ${WERCKER_CACHE_DIR} to /root/.m2/repository for Gradle builds"
mkdir -p /root/.m2
ln -s ${WERCKER_CACHE_DIR} /root/.m2/repository
echo "Specify Maven Local location ${WERCKER_CACHE_DIR} for Gradle builds"
export GRADLE_OPTS="$GRADLE_OPTS -Dmaven.repo.local=${WERCKER_CACHE_DIR}"
echo "------"
du -hs ${WERCKER_CACHE_DIR}
echo "------"
Expand Down