Skip to content

Commit

Permalink
Replace docker-compose with docker compose plugin usage.
Browse files Browse the repository at this point in the history
  • Loading branch information
elgeeko1 committed Sep 18, 2024
1 parent f595af8 commit 117bea7
Showing 1 changed file with 4 additions and 8 deletions.
12 changes: 4 additions & 8 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -23,10 +23,6 @@ jobs:
distribution: 'temurin'
java-version: '21'

# - name: Build and start the environment
# run: |
# docker-compose up -d --build

- name: Install Lingua Franca
run: |
curl -Ls https://install.lf-lang.org | bash -s cli
Expand All @@ -37,7 +33,7 @@ jobs:
- name: Start Test Publisher environment
run: |
cd InfluxPublisher; docker-compose up -d --build; cd ..
cd InfluxPublisher; docker compose up -d --build; cd ..
- name: Install jq
run: |
Expand All @@ -49,11 +45,11 @@ jobs:
- name: Tear down Docker containers
run: |
docker-compose -f docker-compose.yml down
docker-compose -f ./InfluxPublisher/docker-compose.yml down
docker compose -f docker-compose.yml down
docker compose -f ./InfluxPublisher/docker-compose.yml down
- name: Reject Merge (Tests Failed)
if: failure()
run: |
echo "docker-compose version" $(docker-compose --version)
echo "docker compose version" $(docker compose --version)
exit 1

0 comments on commit 117bea7

Please sign in to comment.