Skip to content

Commit

Permalink
Fix the CI
Browse files Browse the repository at this point in the history
It was not running anymore
  • Loading branch information
dadoonet committed Oct 20, 2023
1 parent c67c4dd commit a4fa03c
Show file tree
Hide file tree
Showing 2 changed files with 8 additions and 8 deletions.
4 changes: 2 additions & 2 deletions .github/workflows/maven.yml
Original file line number Diff line number Diff line change
Expand Up @@ -38,7 +38,7 @@ jobs:
- name: Cache Docker images
uses: ScribeMD/docker-cache@0.3.6
with:
key: fscrawler-docker-cache-${{ runner.os }}-${{ hashFiles(paths) }}
key: fscrawler-docker-cache-${{ runner.os }}-${{ hashFiles('pom.xml') }}
continue-on-error: true
- name: Build the project
run: mvn --batch-mode install -DskipTests -Ddocker.skip
Expand All @@ -60,7 +60,7 @@ jobs:
- name: Cache Docker images
uses: ScribeMD/docker-cache@0.3.6
with:
key: fscrawler-docker-cache-${{ runner.os }}-${{ hashFiles(paths) }}
key: fscrawler-docker-cache-${{ runner.os }}-${{ hashFiles('pom.xml') }}
continue-on-error: true
- name: Deploy with Maven
run: mvn deploy -DskipTests
Expand Down
12 changes: 6 additions & 6 deletions .github/workflows/pr.yml
Original file line number Diff line number Diff line change
Expand Up @@ -39,7 +39,7 @@ jobs:
- name: Cache Docker images
uses: ScribeMD/docker-cache@0.3.6
with:
key: fscrawler-docker-cache-${{ runner.os }}-${{ hashFiles(paths) }}
key: fscrawler-docker-cache-${{ runner.os }}-${{ hashFiles('pom.xml') }}
continue-on-error: true
- name: Display Maven information
run: mvn --version
Expand All @@ -61,7 +61,7 @@ jobs:
- name: Cache Docker images
uses: ScribeMD/docker-cache@0.3.6
with:
key: fscrawler-docker-cache-${{ runner.os }}-${{ hashFiles(paths) }}
key: fscrawler-docker-cache-${{ runner.os }}-${{ hashFiles('pom.xml') }}
continue-on-error: true
- name: Run all the unit tests
run: mvn --batch-mode install -Ddocker.skip -DskipIntegTests
Expand All @@ -81,7 +81,7 @@ jobs:
- name: Cache Docker images
uses: ScribeMD/docker-cache@0.3.6
with:
key: fscrawler-docker-cache-${{ runner.os }}-${{ hashFiles(paths) }}
key: fscrawler-docker-cache-${{ runner.os }}-${{ hashFiles('pom.xml') }}
continue-on-error: true
- name: Run the integration tests
run: mvn --batch-mode install -Ddocker.skip -DskipUnitTests
Expand All @@ -101,7 +101,7 @@ jobs:
- name: Cache Docker images
uses: ScribeMD/docker-cache@0.3.6
with:
key: fscrawler-docker-cache-${{ runner.os }}-${{ hashFiles(paths) }}
key: fscrawler-docker-cache-${{ runner.os }}-${{ hashFiles('pom.xml') }}
continue-on-error: true
- name: Run the integration tests
run: mvn --batch-mode install -Ddocker.skip -DskipUnitTests -Pes-7x
Expand All @@ -121,7 +121,7 @@ jobs:
- name: Cache Docker images
uses: ScribeMD/docker-cache@0.3.6
with:
key: fscrawler-docker-cache-${{ runner.os }}-${{ hashFiles(paths) }}
key: fscrawler-docker-cache-${{ runner.os }}-${{ hashFiles('pom.xml') }}
continue-on-error: true
- name: Run the integration tests
run: mvn --batch-mode install -Ddocker.skip -DskipUnitTests -Pes-6x
Expand All @@ -141,7 +141,7 @@ jobs:
- name: Cache Docker images
uses: ScribeMD/docker-cache@0.3.6
with:
key: fscrawler-docker-cache-${{ runner.os }}-${{ hashFiles(paths) }}
key: fscrawler-docker-cache-${{ runner.os }}-${{ hashFiles('pom.xml') }}
continue-on-error: true
- name: Build the docker images
run: mvn --batch-mode install -DskipTests

0 comments on commit a4fa03c

Please sign in to comment.