Skip to content

Commit

Permalink
Use docker compose plugin (#150)
Browse files Browse the repository at this point in the history
Motivation:
`docker-compose` is no longer available and we should use `docker
compose` plugin now.

Modification:
Updated workflows to use `docker compose` plugin

Result:
Build working again
  • Loading branch information
hyperxpro authored Aug 17, 2024
1 parent 2eddacf commit 5e19368
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions .github/workflows/maven.yml
Original file line number Diff line number Diff line change
Expand Up @@ -77,7 +77,7 @@ jobs:
steps:
- uses: actions/checkout@v3
- name: build centos6
run: docker-compose -f docker/docker-compose.yml run build
run: docker compose -f docker/docker-compose.yml run build
- name: Upload the build
uses: actions/upload-artifact@v3
with:
Expand All @@ -89,21 +89,21 @@ jobs:
steps:
- uses: actions/checkout@v3
- name: build centos6
run: docker-compose -f docker/docker-compose11.yml run build
run: docker compose -f docker/docker-compose11.yml run build

Linux-x86_64-Build-JDK17:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- name: build centos6
run: docker-compose -f docker/docker-compose17.yml run build
run: docker compose -f docker/docker-compose17.yml run build

Linux-x86_64-Build-JDK21:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- name: build centos6
run: docker-compose -f docker/docker-compose21.yml run build
run: docker compose -f docker/docker-compose21.yml run build

Linux-Aarch64-Build-JDK8:
runs-on: ubuntu-latest
Expand Down

0 comments on commit 5e19368

Please sign in to comment.