Skip to content

Commit

Permalink
Merge pull request #1122 from aws-observability/thpierce-patch-4
Browse files Browse the repository at this point in the history
Fix docker-compose in integ tests
  • Loading branch information
thpierce authored Aug 16, 2024
2 parents ad1529f + 69d735e commit 0e09cca
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions .github/workflows/integration-test.yml
Original file line number Diff line number Diff line change
Expand Up @@ -51,7 +51,7 @@ jobs:
./gradlew jibDockerBuild
- name: Run test containers (java)
if: ${{ contains(matrix.app-language, 'java-') }}
run: docker-compose -f docker-compose-java.yml up --abort-on-container-exit
run: docker compose -f docker-compose-java.yml up --abort-on-container-exit
working-directory: .github/collector
env:
INSTANCE_ID: ${{ github.run_id }}-${{ github.run_number }}
Expand All @@ -61,7 +61,7 @@ jobs:
VALIDATOR_COMMAND: -c standard-otel-trace-metric-validation.yml --testcase standard_otlp_metric_trace --endpoint http://app:8080 --metric-namespace aws-otel/${{ matrix.app-language }}-sample-app -t ${{ github.run_id }}-${{ github.run_number }} --language ${{ matrix.app-language }}
- name: Run test containers (non-java)
if: ${{ !contains(matrix.app-language, 'java-') }}
run: docker-compose -f docker-compose.yml up --abort-on-container-exit
run: docker compose -f docker-compose.yml up --abort-on-container-exit
working-directory: .github/collector
env:
INSTANCE_ID: ${{ github.run_id }}-${{ github.run_number }}
Expand Down

0 comments on commit 0e09cca

Please sign in to comment.