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.
57 lines
2.1 KiB
57 lines
2.1 KiB
name: Windows Build |
|
on: |
|
push: |
|
branches: |
|
- 3.2.x |
|
concurrency: |
|
group: ${{ github.workflow }}-${{ github.ref }} |
|
jobs: |
|
build: |
|
name: 'Windows | Java 17' |
|
runs-on: 'windows-latest' |
|
if: ${{ github.repository == 'spring-projects/spring-boot' }} |
|
steps: |
|
- name: Set up Java |
|
uses: actions/setup-java@v4 |
|
with: |
|
distribution: 'liberica' |
|
java-version: 17 |
|
- name: Configure git |
|
run: | |
|
git config --global core.autocrlf true |
|
git config --global core.longPaths true |
|
- name: Check out code |
|
uses: actions/checkout@v4 |
|
- name: Set up Gradle |
|
uses: gradle/actions/setup-gradle@417ae3ccd767c252f5661f1ace9f835f9654f2b5 |
|
with: |
|
cache-read-only: false |
|
- name: Configure Gradle properties |
|
shell: bash |
|
run: | |
|
mkdir -p $HOME/.gradle |
|
echo 'systemProp.user.name=spring-builds+github' >> $HOME/.gradle/gradle.properties |
|
echo 'systemProp.org.gradle.internal.launcher.welcomeMessageEnabled=false' >> $HOME/.gradle/gradle.properties |
|
echo 'org.gradle.daemon=false' >> $HOME/.gradle/gradle.properties |
|
- name: Stop Docker service |
|
run: Stop-Service -name Docker |
|
- name: Build |
|
id: build |
|
env: |
|
CI: 'true' |
|
GRADLE_ENTERPRISE_URL: 'https://ge.spring.io' |
|
GRADLE_ENTERPRISE_ACCESS_KEY: ${{ secrets.GRADLE_ENTERPRISE_SECRET_ACCESS_KEY }} |
|
GRADLE_ENTERPRISE_CACHE_USERNAME: ${{ secrets.GRADLE_ENTERPRISE_CACHE_USER }} |
|
GRADLE_ENTERPRISE_CACHE_PASSWORD: ${{ secrets.GRADLE_ENTERPRISE_CACHE_PASSWORD }} |
|
run: ./gradlew build |
|
- name: Print JVM thread dumps when cancelled |
|
uses: ./.github/actions/print-jvm-thread-dumps |
|
if: cancelled() |
|
- name: Send notification |
|
uses: ./.github/actions/send-notification |
|
if: always() |
|
with: |
|
webhook-url: ${{ secrets.GOOGLE_CHAT_WEBHOOK_URL }} |
|
status: ${{ job.status }} |
|
build-scan-url: ${{ steps.build.outputs.build-scan-url }} |
|
run-name: ${{ format('{0} | Windows | Java 17', github.ref_name) }}
|
|
|