This repository has been archived by the owner on Jan 15, 2024. It is now read-only.
test-e2e #986
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: test-e2e | |
on: | |
workflow_run: | |
workflows: ["test"] | |
types: | |
- completed | |
permissions: | |
checks: write | |
contents: read | |
id-token: write | |
jobs: | |
test-jaeger-grpc-integration: | |
concurrency: "1" | |
name: test-jaeger-grpc-integration | |
runs-on: ubuntu-latest | |
if: ${{ github.event.workflow_run.conclusion == 'success' }} | |
steps: | |
- uses: LouisBrunner/checks-action@v1.6.2 | |
with: | |
token: ${{ secrets.GITHUB_TOKEN }} | |
name: test-e2e | |
status: in_progress | |
sha: ${{ github.event.workflow_run.head_sha }} | |
output: | | |
{ | |
"summary": "See details in ${{ github.event.workflow_run.html_url }}" | |
} | |
- uses: actions/checkout@v4 | |
with: | |
ref: ${{ github.event.workflow_run.head_sha }} | |
- name: Configure AWS credentials from CI account | |
uses: aws-actions/configure-aws-credentials@v4 | |
with: | |
role-to-assume: arn:aws:iam::962548656022:role/jaeger-s3-ci | |
aws-region: us-east-1 | |
- run: | | |
mkdir -p ~/.docker/cli-plugins/ | |
curl -SL https://github.com/docker/compose/releases/download/v2.0.0/docker-compose-linux-amd64 -o ~/.docker/cli-plugins/docker-compose | |
chmod +x ~/.docker/cli-plugins/docker-compose | |
- run: make test-jaeger-grpc-integration | |
- uses: LouisBrunner/checks-action@v1.6.2 | |
if: always() | |
with: | |
token: ${{ secrets.GITHUB_TOKEN }} | |
name: test-e2e | |
conclusion: ${{ job.status }} | |
sha: ${{ github.event.workflow_run.head_sha }} | |
output: | | |
{ | |
"summary": "See details in ${{ github.event.workflow_run.html_url }}" | |
} |