diff --git a/.github/workflows/ci.yaml b/.github/workflows/ci.yaml index 697d0ad..1bc22a4 100644 --- a/.github/workflows/ci.yaml +++ b/.github/workflows/ci.yaml @@ -72,21 +72,6 @@ jobs: - name: Run unit tests run: go run mage.go coverage - - name: Check Envoy example is spinning up - run: | - ENVOY_CONTAINER_NAME="envoy-envoy-1" - go run mage.go runEnvoyExample & - TIMEOUT=5 - while [ $TIMEOUT -gt 0 ]; do - exit_code=$(docker inspect -f '{{.State.ExitCode}}' $ENVOY_CONTAINER_NAME) - if [ $exit_code -ne 0 ]; then - echo "Envoy example failed to start" - exit 1 - fi - sleep 1 # Wait for 1 second before checking again for up to TIMEOUT times - ((TIMEOUT--)) - done - - name: Run e2e tests shell: bash run: > diff --git a/example/envoy/docker-compose.yml b/example/envoy/docker-compose.yml index 952ec71..676435e 100644 --- a/example/envoy/docker-compose.yml +++ b/example/envoy/docker-compose.yml @@ -31,7 +31,7 @@ services: - --log-path - /home/envoy/logs/envoy.log volumes: - - ../build:/build + - ../../build:/build - .:/conf - logs:/home/envoy/logs:rw ports: