Skip to content

Commit

Permalink
[Bug][ci] Fix missing the maven-metadata.xml file in repository.jboss…
Browse files Browse the repository at this point in the history
….org (apache#1266)
  • Loading branch information
asdf2014 authored Feb 16, 2022
1 parent b376b57 commit ea8c4da
Show file tree
Hide file tree
Showing 3 changed files with 8 additions and 5 deletions.
7 changes: 4 additions & 3 deletions .github/workflows/backend.yml
Original file line number Diff line number Diff line change
Expand Up @@ -60,7 +60,7 @@ jobs:
${{ runner.os }}-maven-
- name: Check Style
run: |
./mvnw -T 2C -B checkstyle:check
./mvnw -T 2C -B checkstyle:check --no-snapshot-updates
- name: Build and Package
run: |
./mvnw -B install scalastyle:check \
Expand All @@ -69,9 +69,10 @@ jobs:
-Dhttp.keepAlive=false \
-Dmaven.wagon.http.pool=false \
-Dmaven.wagon.http.retryHandler.count=3 \
-Dmaven.wagon.httpconnectionManager.ttlSeconds=120
-Dmaven.wagon.httpconnectionManager.ttlSeconds=120 \
--no-snapshot-updates
- name: Check dependency license
run: bash ./tools/dependencies/checkLicense.sh
- name: Run Unit tests
run: |
./mvnw -T 2C -B clean verify -Dmaven.test.skip=false -Dgpg.skip=true
./mvnw -T 2C -B clean verify -Dmaven.test.skip=false -Dgpg.skip=true --no-snapshot-updates
3 changes: 2 additions & 1 deletion .github/workflows/docker.yml
Original file line number Diff line number Diff line change
Expand Up @@ -57,6 +57,7 @@ jobs:
-Dhttp.keepAlive=false \
-Dmaven.wagon.http.pool=false \
-Dmaven.wagon.httpconnectionManager.ttlSeconds=120 \
-Pdocker
-Pdocker \
--no-snapshot-updates
- name: Sanity Check Docker Images
run: docker-compose -f deploy/docker/spark/docker-compose.yaml up
3 changes: 2 additions & 1 deletion .github/workflows/publish-docker.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -71,4 +71,5 @@ jobs:
-Dmaven.deploy.skip \
-Ddocker.tag=${{ github.sha }} \
-Ddocker.hub=${{ env.HUB }} \
-Pdocker
-Pdocker \
--no-snapshot-updates

0 comments on commit ea8c4da

Please sign in to comment.