Use https protocol in local nodes per default #661
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@v4 | ||
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@v5 | ||
with: | ||
commit_message: Automatically update versions | ||
# 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@v4 | ||
- name: Set up JDK 17 | ||
uses: actions/setup-java@v3 | ||
with: | ||
java-version: '17' | ||
distribution: 'adopt' | ||
cache: 'maven' | ||
- name: Cache Docker images | ||
uses: ScribeMD/[email protected] | ||
with: | ||
key: fscrawler-docker-cache-${{ runner.os }}-${{ hashFiles(paths) }} | ||
Check failure on line 42 in .github/workflows/pr.yml GitHub Actions / Build Pull RequestsInvalid workflow file
|
||
continue-on-error: true | ||
- 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@v4 | ||
- name: Set up JDK 17 | ||
uses: actions/setup-java@v3 | ||
with: | ||
java-version: '17' | ||
distribution: 'adopt' | ||
cache: 'maven' | ||
- name: Cache Docker images | ||
uses: ScribeMD/[email protected] | ||
with: | ||
key: fscrawler-docker-cache-${{ runner.os }}-${{ hashFiles(paths) }} | ||
continue-on-error: true | ||
- 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@v4 | ||
- name: Set up JDK 17 | ||
uses: actions/setup-java@v3 | ||
with: | ||
java-version: '17' | ||
distribution: 'adopt' | ||
cache: 'maven' | ||
- name: Cache Docker images | ||
uses: ScribeMD/[email protected] | ||
with: | ||
key: fscrawler-docker-cache-${{ runner.os }}-${{ hashFiles(paths) }} | ||
continue-on-error: true | ||
- 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@v4 | ||
- name: Set up JDK 17 | ||
uses: actions/setup-java@v3 | ||
with: | ||
java-version: '17' | ||
distribution: 'adopt' | ||
cache: 'maven' | ||
- name: Cache Docker images | ||
uses: ScribeMD/[email protected] | ||
with: | ||
key: fscrawler-docker-cache-${{ runner.os }}-${{ hashFiles(paths) }} | ||
continue-on-error: true | ||
- 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@v4 | ||
- name: Set up JDK 17 | ||
uses: actions/setup-java@v3 | ||
with: | ||
java-version: '17' | ||
distribution: 'adopt' | ||
cache: 'maven' | ||
- name: Cache Docker images | ||
uses: ScribeMD/[email protected] | ||
with: | ||
key: fscrawler-docker-cache-${{ runner.os }}-${{ hashFiles(paths) }} | ||
continue-on-error: true | ||
- 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@v4 | ||
- name: Set up JDK 17 | ||
uses: actions/setup-java@v3 | ||
with: | ||
java-version: '17' | ||
distribution: 'adopt' | ||
cache: 'maven' | ||
- name: Cache Docker images | ||
uses: ScribeMD/[email protected] | ||
with: | ||
key: fscrawler-docker-cache-${{ runner.os }}-${{ hashFiles(paths) }} | ||
continue-on-error: true | ||
- name: Build the docker images | ||
run: mvn --batch-mode install -DskipTests |