Bump co.elastic.clients:elasticsearch-java from 8.9.0 to 8.9.1 #611
Workflow file for this run
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
# This workflow will build a Java project with Maven | |
# For more information see: https://help.github.com/actions/language-and-framework-guides/building-and-testing-java-with-maven | |
name: Build Pull Requests | |
on: [pull_request] | |
jobs: | |
# We update files if needed | |
update-files: | |
runs-on: ubuntu-latest | |
permissions: | |
contents: write | |
packages: write | |
steps: | |
- name: Checkout code | |
uses: actions/checkout@v3 | |
with: | |
token: ${{ secrets.PAT || github.token }} | |
ref: ${{ github.head_ref }} | |
- name: Update resources with Maven | |
run: mvn -B generate-resources | |
- name: Update files if needed | |
uses: stefanzweifel/git-auto-commit-action@v4 | |
# We build the project but the docker images and run all the tests | |
build: | |
runs-on: ubuntu-latest | |
needs: update-files | |
steps: | |
- uses: actions/checkout@v2 | |
- name: Set up JDK 17 | |
uses: actions/setup-java@v2 | |
with: | |
java-version: '17' | |
distribution: 'adopt' | |
cache: 'maven' | |
- name: Docker Layer Caching | |
uses: satackey/[email protected] | |
# Ignore the failure of a step and avoid terminating the job. | |
continue-on-error: true | |
with: | |
key: fscrawler-docker-cache-{hash} | |
restore-keys: | | |
fscrawler-docker-cache- | |
- name: Display Maven information | |
run: mvn --version | |
- name: Build but the docker images | |
run: mvn --batch-mode install -Ddocker.skip -DskipTests | |
# We run unit tests | |
unit: | |
runs-on: ubuntu-latest | |
needs: build | |
steps: | |
- uses: actions/checkout@v2 | |
- name: Set up JDK 17 | |
uses: actions/setup-java@v2 | |
with: | |
java-version: '17' | |
distribution: 'adopt' | |
cache: 'maven' | |
- name: Docker Layer Caching | |
uses: satackey/[email protected] | |
# Ignore the failure of a step and avoid terminating the job. | |
continue-on-error: true | |
with: | |
key: fscrawler-docker-cache-{hash} | |
restore-keys: | | |
fscrawler-docker-cache- | |
- name: Run all the unit tests | |
run: mvn --batch-mode install -Ddocker.skip -DskipIntegTests | |
# We run integration tests with elastic stack 8 (default) | |
it: | |
runs-on: ubuntu-latest | |
needs: build | |
steps: | |
- uses: actions/checkout@v2 | |
- name: Set up JDK 17 | |
uses: actions/setup-java@v2 | |
with: | |
java-version: '17' | |
distribution: 'adopt' | |
cache: 'maven' | |
- name: Docker Layer Caching | |
uses: satackey/[email protected] | |
# Ignore the failure of a step and avoid terminating the job. | |
continue-on-error: true | |
with: | |
key: fscrawler-docker-cache-{hash} | |
restore-keys: | | |
fscrawler-docker-cache- | |
- name: Run the integration tests | |
run: mvn --batch-mode install -Ddocker.skip -DskipUnitTests | |
# We run integration tests with elastic stack 7 | |
it-es7: | |
runs-on: ubuntu-latest | |
needs: build | |
steps: | |
- uses: actions/checkout@v2 | |
- name: Set up JDK 17 | |
uses: actions/setup-java@v2 | |
with: | |
java-version: '17' | |
distribution: 'adopt' | |
cache: 'maven' | |
- name: Docker Layer Caching | |
uses: satackey/[email protected] | |
# Ignore the failure of a step and avoid terminating the job. | |
continue-on-error: true | |
with: | |
key: fscrawler-docker-cache-{hash} | |
restore-keys: | | |
fscrawler-docker-cache- | |
- name: Run the integration tests | |
run: mvn --batch-mode install -Ddocker.skip -DskipUnitTests -Pes-7x | |
# We run integration tests with elastic stack 6 | |
it-es6: | |
runs-on: ubuntu-latest | |
needs: build | |
steps: | |
- uses: actions/checkout@v2 | |
- name: Set up JDK 17 | |
uses: actions/setup-java@v2 | |
with: | |
java-version: '17' | |
distribution: 'adopt' | |
cache: 'maven' | |
- name: Docker Layer Caching | |
uses: satackey/[email protected] | |
# Ignore the failure of a step and avoid terminating the job. | |
continue-on-error: true | |
with: | |
key: fscrawler-docker-cache-{hash} | |
restore-keys: | | |
fscrawler-docker-cache- | |
- name: Run the integration tests | |
run: mvn --batch-mode install -Ddocker.skip -DskipUnitTests -Pes-6x | |
# We run this job in parallel after the build | |
build-docker: | |
runs-on: ubuntu-latest | |
needs: build | |
steps: | |
- uses: actions/checkout@v2 | |
- name: Set up JDK 17 | |
uses: actions/setup-java@v2 | |
with: | |
java-version: '17' | |
distribution: 'adopt' | |
cache: 'maven' | |
- name: Docker Layer Caching | |
uses: satackey/[email protected] | |
# Ignore the failure of a step and avoid terminating the job. | |
continue-on-error: true | |
with: | |
key: fscrawler-docker-cache-{hash} | |
restore-keys: | | |
fscrawler-docker-cache- | |
- name: Build the docker images | |
run: mvn --batch-mode install -DskipTests |