You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
36 lines
996 B
36 lines
996 B
name: Build Pull Request |
|
on: pull_request |
|
|
|
permissions: |
|
contents: read |
|
|
|
jobs: |
|
build: |
|
name: Build pull request |
|
runs-on: ubuntu-latest |
|
if: ${{ github.repository == 'spring-projects/spring-boot' }} |
|
steps: |
|
- name: Set up JDK 8 |
|
uses: actions/setup-java@v3 |
|
with: |
|
java-version: '8' |
|
distribution: 'liberica' |
|
|
|
- name: Check out code |
|
uses: actions/checkout@v3 |
|
|
|
- name: Validate Gradle wrapper |
|
uses: gradle/wrapper-validation-action@v1 |
|
|
|
- name: Set up Gradle |
|
uses: gradle/gradle-build-action@749f47bda3e44aa060e82d7b3ef7e40d953bd629 |
|
|
|
- name: Build |
|
env: |
|
CI: 'true' |
|
GRADLE_ENTERPRISE_URL: 'https://ge.spring.io' |
|
run: ./gradlew -Dorg.gradle.internal.launcher.welcomeMessageEnabled=false --no-daemon --max-workers=4 --continue build |
|
|
|
- name: Print JVM thread dumps when cancelled |
|
uses: ./.github/actions/print-jvm-thread-dumps |
|
if: cancelled()
|
|
|