run tests through agent #132
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@main | |
with: | |
version: v0.14.6-rc.2 | |
apiKey: ${{ secrets.TRACETEST_API_KEY }} | |
params: -e https://app-stage.tracetest.io | |
- name: Start pokeshop services | |
run: | | |
docker compos -f docker-compose.agent.yaml up -d \ | |
|| (docker compos -f docker-compose.agent.yaml logs; exit 1) | |
- name: Wait for pokeshop services | |
run: | | |
timeout 60 bash -c 'until echo > /dev/tcp/localhost/8081; do sleep 1; done; echo "pokeshop http api ready"' | |
- name: Run tracetests | |
run: | | |
export TRACETEST_TOKEN=${{ secrets.TRACETEST_TOKEN }} | |
tracetest run \ | |
--config ./tracetest/config/tracetest-cloud.yaml \ | |
--file ./tracetest/tests/testsuite.yaml \ | |
--vars ./tracetest/tests/vars.agent.yaml | |