Skip to content

Commit

Permalink
Check integration tests
Browse files Browse the repository at this point in the history
  • Loading branch information
tvaron3 committed Nov 21, 2024
1 parent 4369bbc commit 402411f
Show file tree
Hide file tree
Showing 3 changed files with 5 additions and 5 deletions.
1 change: 0 additions & 1 deletion .github/workflows/mavenCI.yml
Original file line number Diff line number Diff line change
Expand Up @@ -29,7 +29,6 @@ jobs:
- name: Run Integration Test
shell: pwsh
run: ./src/docker/startup.ps1
if: github.ref == 'refs/heads/main'
- name: Upload JaCoCo coverage report
uses: actions/upload-artifact@v3
with:
Expand Down
5 changes: 3 additions & 2 deletions .github/workflows/release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -28,10 +28,11 @@ jobs:
runs-on: ubuntu-latest
steps:
- name: Checkout code
uses: actions/checkout@v2
uses: actions/checkout@v3
- name: Set up JDK 11
uses: actions/setup-java@v1
uses: actions/setup-java@v3
with:
distribution: 'zulu'
java-version: 11
- name: Get java-version
id: get-version
Expand Down
4 changes: 2 additions & 2 deletions src/docker/startup.sh
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
#!/bin/bash
echo "Shutting down Docker Compose orchestration..."
docker-compose down
docker compose down

echo "Deleting prior Cosmos DB connectors..."
rm -rf connectors
Expand All @@ -24,4 +24,4 @@ echo "Building Cosmos DB Kafka Connect Docker image"
docker build . -t cosmosdb-kafka-connect:latest

echo "Starting Docker Compose..."
docker-compose up -d
docker compose up -d

0 comments on commit 402411f

Please sign in to comment.