run tests through agent #145
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
name: Docker Image CI | |
on: | |
push: | |
branches: [ "master" ] | |
pull_request: | |
branches: [ "master" ] | |
jobs: | |
build: | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v3 | |
- name: Set up QEMU | |
uses: docker/setup-qemu-action@v2 | |
- name: Set up Docker Buildx | |
uses: docker/setup-buildx-action@v2 | |
- name: Login to DockerHub | |
uses: docker/login-action@v2 | |
with: | |
username: ${{ secrets.DOCKERHUB_USERNAME }} | |
password: ${{ secrets.DOCKERHUB_TOKEN }} | |
- name: Build and push | |
uses: docker/build-push-action@v3 | |
with: | |
context: . | |
platforms: linux/amd64,linux/arm64 | |
push: true | |
cache-from: type=gha | |
cache-to: type=gha,mode=max | |
tags: | | |
kubeshop/demo-pokemon-api:latest | |
tracet-tests: | |
needs: [build] | |
name: Tracetests | |
runs-on: ubuntu-latest | |
steps: | |
- name: Checkout | |
uses: actions/checkout@v3 | |
- name: Setup Tracetest | |
uses: kubeshop/tracetest-agent-action@v1 | |
with: | |
apiKey: ${{ secrets.TRACETEST_API_KEY }} | |
token: ${{ secrets.TRACETEST_TOKEN}} | |
- name: Start pokeshop services | |
run: | | |
docker compose -f docker-compose.agent.yml up -d \ | |
|| (docker compose -f docker-compose.agent.yml logs; exit 1) | |
- name: Wait for pokeshop services | |
run: | | |
sleep 15 # it might take some time for docker compose to start up | |
timeout 60 bash -c 'until nc -z -w 1 localhost '8081' > /dev/null 2>&1; do sleep 1; done; echo "pokeshop http api ready"' | |
- name: Run tracetests | |
run: | | |
tracetest run \ | |
--file ./tracetest/tests/testsuite.yaml \ | |
--vars ./tracetest/tests/vars.agent.yaml \ | |
|| (docker compose -f docker-compose.agent.yml logs; exit 1) | |