Skip to content

Retry on failure

Retry on failure #116

Workflow file for this run

name: Java CI
on:
push:
schedule:
- cron: '0 5 */1 * *'
rerun-failed-jobs:

Check failure on line 8 in .github/workflows/main.yml

View workflow run for this annotation

GitHub Actions / Java CI

Invalid workflow file

The workflow is not valid. .github/workflows/main.yml (Line: 8, Col: 1): Unexpected value 'rerun-failed-jobs'
runs-on: ubuntu-latest
needs: [ build ]
if: failure()
steps:
- name: Rerun failed jobs in the current workflow
env:
GH_TOKEN: ${{ github.token }}
run: gh run rerun ${{ github.run_id }} --failed
jobs:
build:
runs-on: ${{ matrix.os }}
continue-on-error: ${{ matrix.experimental }}
strategy:
fail-fast: false
matrix:
os: [ ubuntu-latest, macos-latest, windows-latest ]
java: [ 11, 17, 21]
experimental: [ false ]
include:
- java: 22-ea
os: ubuntu-latest
experimental: true
- java: 22-ea
os: macos-latest
experimental: true
- java: 22-ea
os: windows-latest
experimental: true
name: Build with Java ${{ matrix.java }} on ${{ matrix.os }}
steps:
- uses: actions/checkout@v4
with:
fetch-depth: 0 # Shallow clones should be disabled for a better relevancy of analysis
- name: Setup Java
uses: actions/setup-java@v4
with:
distribution: 'temurin'
java-version: ${{ matrix.java }}
- name: Cache SonarCloud packages
uses: actions/cache@v3
with:
path: ~/.sonar/cache
key: ${{ runner.os }}-sonar
restore-keys: ${{ runner.os }}-sonar
- name: Cache Maven packages
uses: actions/cache@v3
with:
path: ~/.m2
key: ${{ runner.os }}-m2-${{ hashFiles('**/pom.xml') }}
restore-keys: ${{ runner.os }}-m2
- name: Build with Maven
run: mvn -B -C verify org.sonarsource.scanner.maven:sonar-maven-plugin:sonar "-Dsonar.projectKey=nhenneaux_resilient-httpclient"
if: ${{ matrix.java }} == 21 $$ ${{ matrix.os }} == "ubuntu-latest"
env:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
SONAR_TOKEN: ${{ secrets.SONAR_TOKEN }}