This repository has been archived by the owner on Jan 15, 2024. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 2
53 lines (51 loc) · 1.68 KB
/
test-e2e.yml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
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 }}"
}