File tree Expand file tree Collapse file tree
Expand file tree Collapse file tree Original file line number Diff line number Diff line change @@ -514,7 +514,7 @@ jobs:
514514 echo "waiting for Tyk Gateway to initalize..."
515515 sleep 30
516516 for i in {1..10}; do
517- if curl -s https ://localhost:8080/hello > /dev/null; then
517+ if curl -s http ://localhost:8080/hello > /dev/null; then
518518 echo "Gateway is ready!"
519519 break
520520 fi
@@ -584,7 +584,7 @@ jobs:
584584 tags : test-${{ matrix.distro }}-${{ matrix.arch }}
585585 load : true
586586 - name : Test the built container image with api functionality test.
587- run : " docker run -d -p8080:8080 --name=test --platform linux/${{ matrix.arch }} --network ${{ job.container.network }} --rm test-${{ matrix.distro }}-${{ matrix.arch }}\n echo \" waiting for Tyk Gateway to initalize...\"\n sleep 30\n for i in {1..10}; do\n if curl -s https ://localhost:8080/hello > /dev/null; then\n echo \" Gateway is ready!\"\n break\n fi\n echo \" Waiting for gateway to become available... ($i/10)\"\n sleep 5\n if [ $i -eq 10 ]; then\n echo \" Gateway failed to start within timeout\"\n docker logs test\n exit 1\n fi\n done\n ./ci/tests/api-functionality/api_test.sh\n sleep 2\n docker stop test || true \n "
587+ run : " docker run -d -p8080:8080 --name=test --platform linux/${{ matrix.arch }} --network ${{ job.container.network }} --rm test-${{ matrix.distro }}-${{ matrix.arch }}\n echo \" waiting for Tyk Gateway to initalize...\"\n sleep 30\n for i in {1..10}; do\n if curl -s http ://localhost:8080/hello > /dev/null; then\n echo \" Gateway is ready!\"\n break\n fi\n echo \" Waiting for gateway to become available... ($i/10)\"\n sleep 5\n if [ $i -eq 10 ]; then\n echo \" Gateway failed to start within timeout\"\n docker logs test\n exit 1\n fi\n done\n ./ci/tests/api-functionality/api_test.sh\n sleep 2\n docker stop test || true \n "
588588 release-tests :
589589 needs :
590590 - goreleaser
You can’t perform that action at this time.
0 commit comments