Skip to content

Snapshots Check

Snapshots Check #37

Workflow file for this run

name: Snapshots Check
on:
schedule:
- cron: "0 20 * * *"
permissions: read-all
jobs:
run-tests:
runs-on: ubuntu-latest
strategy:
fail-fast: false
matrix:
branch: [ 3.5.x, main ]
test-type:
- type: core-fast
arguments: ":reactor-core:test --no-daemon -Pjunit-tags=!slow -DuseSnapshotMicrometerVersion=true"
- type: core-fast-java21
arguments: ":reactor-core:java21Test --no-daemon -Pjunit-tags=!slow -DuseSnapshotMicrometerVersion=true"
- type: core-slow
arguments: ":reactor-core:test --no-daemon -Pjunit-tags=slow -DuseSnapshotMicrometerVersion=true"
- type: other
arguments: "check -x :reactor-core:test -x spotlessCheck -x :reactor-core:jcstress --no-daemon -DuseSnapshotMicrometerVersion=true"
exclude:
- branch: 3.5.x
test-type:
type: core-fast-java21
name: Test on ${{ matrix.branch }} - ${{ matrix.test-type.type }} tests
steps:
- name: Checkout Repository
uses: actions/checkout@8ade135a41bc03ea155e62e844d188df1ea18608 # tag=v4
with:
ref: ${{ matrix.branch }}
- name: Download Java9
if: ${{ matrix.branch == 'main' }}
run: ${GITHUB_WORKSPACE}/.github/setup.sh
shell: bash
- name: Setup Java9
if: ${{ matrix.branch == 'main' }}
uses: actions/setup-java@99b8673ff64fbf99d8d325f52d9a5bdedb8483e9 # tag=v3
with:
distribution: 'jdkfile'
java-version: 9.0.4
jdkFile: /opt/openjdk/java9/OpenJDK9U-jdk_x64_linux_hotspot_9.0.4_11.tar.gz
- name: Setup Java21
if: ${{ matrix.branch == 'main' }}
uses: actions/setup-java@99b8673ff64fbf99d8d325f52d9a5bdedb8483e9 # tag=v3
with:
distribution: 'temurin'
java-version: 21
- name: Setup Java8
uses: actions/setup-java@99b8673ff64fbf99d8d325f52d9a5bdedb8483e9 # tag=v3
with:
distribution: 'temurin'
java-version: 8
- name: Run Gradle Tests
uses: gradle/actions/setup-gradle@417ae3ccd767c252f5661f1ace9f835f9654f2b5 # tag=v3
with:
arguments: ${{ matrix.test-type.arguments }}