Skip to content

Commit 7857fff

Browse files
Excavator: Render CircleCI file using template specified in .circleci/template.sh (#802)
1 parent 575b8df commit 7857fff

File tree

1 file changed

+6
-0
lines changed

1 file changed

+6
-0
lines changed

.circleci/config.yml

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -41,6 +41,12 @@ jobs:
4141
echo "$TAGS_TO_DELETE" | while read -r TAG; do git tag -d "$TAG" 1>/dev/null; done
4242
- restore_cache: { key: 'gradle-wrapper-v1-{{ checksum "gradle/wrapper/gradle-wrapper.properties" }}' }
4343
- restore_cache: { key: 'check-gradle-cache-v1-{{ checksum "versions.props" }}-{{ checksum "build.gradle" }}' }
44+
- run:
45+
name: check-setup
46+
command: |
47+
if [ -x .circleci/check-setup.sh ]; then
48+
echo "Running check-setup" && .circleci/check-setup.sh && echo "check-setup complete"
49+
fi
4450
- run: ./gradlew --parallel --stacktrace --continue --max-workers=2 check -Porg.gradle.java.installations.fromEnv=JAVA_8_HOME,JAVA_11_HOME,JAVA_15_HOME,JAVA_17_HOME,JAVA_HOME
4551
- persist_to_workspace:
4652
root: /home/circleci

0 commit comments

Comments
 (0)