mirror of
https://github.com/spring-projects/spring-boot.git
synced 2026-05-02 19:30:23 +01:00
ce1c75d74a
Bumps [actions/checkout](https://github.com/actions/checkout) from 4 to 5. - [Release notes](https://github.com/actions/checkout/releases) - [Commits](https://github.com/actions/checkout/compare/v4...v5) --- updated-dependencies: - dependency-name: actions/checkout dependency-version: '5' dependency-type: direct:production update-type: version-update:semver-major ... See gh-46787 Signed-off-by: dependabot[bot] <support@github.com>
41 lines
1.3 KiB
YAML
41 lines
1.3 KiB
YAML
name: Run System Tests
|
|
on:
|
|
push:
|
|
branches:
|
|
- '3.4.x'
|
|
permissions:
|
|
contents: read
|
|
jobs:
|
|
run-system-tests:
|
|
name: 'Java ${{ matrix.java.version}}'
|
|
if: ${{ github.repository == 'spring-projects/spring-boot' }}
|
|
runs-on: ${{ vars.UBUNTU_MEDIUM || 'ubuntu-latest' }}
|
|
strategy:
|
|
matrix:
|
|
java:
|
|
- version: 17
|
|
toolchain: false
|
|
- version: 21
|
|
toolchain: true
|
|
steps:
|
|
- name: Check Out Code
|
|
uses: actions/checkout@v5
|
|
- name: Prepare Gradle Build
|
|
uses: ./.github/actions/prepare-gradle-build
|
|
with:
|
|
develocity-access-key: ${{ secrets.DEVELOCITY_ACCESS_KEY }}
|
|
java-toolchain: ${{ matrix.java.toolchain }}
|
|
java-version: ${{ matrix.java.version }}
|
|
- name: Run System Tests
|
|
id: run-system-tests
|
|
shell: bash
|
|
run: ./gradlew systemTest
|
|
- name: Send Notification
|
|
if: always()
|
|
uses: ./.github/actions/send-notification
|
|
with:
|
|
build-scan-url: ${{ steps.run-system-tests.outputs.build-scan-url }}
|
|
run-name: ${{ format('{0} | System Tests | Java {1}', github.ref_name, matrix.java.version) }}
|
|
status: ${{ job.status }}
|
|
webhook-url: ${{ secrets.GOOGLE_CHAT_WEBHOOK_URL }}
|