-
Notifications
You must be signed in to change notification settings - Fork 251
88 lines (75 loc) · 2.46 KB
/
test-e2e.yaml
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
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
name: E2E Tests
on:
workflow_call:
jobs:
build-docker-image:
name: Build Docker image
runs-on: ubuntu-latest
steps:
- name: Checkout
uses: actions/checkout@v4
- name: Set up QEMU
uses: docker/setup-qemu-action@v3
- name: Set up Docker Buildx
uses: docker/setup-buildx-action@v3
- name: Build and export
uses: docker/build-push-action@v6
with:
context: .
tags: vechain/thor:${{ github.sha }}
outputs: type=docker,dest=/tmp/vechain-thor.tar
- name: Upload artifact
uses: actions/upload-artifact@v4
with:
name: vechain-thor-image-${{ github.sha }}
path: /tmp/vechain-thor.tar
retention-days: 7
run-tests:
runs-on: ubuntu-latest
needs: build-docker-image
env:
THOR_IMAGE: vechain/thor:${{ github.sha }}
name: Run Tests
steps:
# Main: https://github.com/vechain/thor-e2e-tests/tree/956b34bcf5b0b072cd7c8fd2e546a9beb66a866a
# For release branches, names in the thor and thor-e2e-tests repos should match
- name: Set e2e repo reference
id: set-ref
run: |
if [[ "${{ github.event.pull_request.base.ref }}" == release/* ]]; then
echo "ref=${{ github.event.pull_request.base.ref }}" >> "$GITHUB_OUTPUT"
elif [[ "${{ github.head_ref }}" == release/* ]]; then
echo "ref=${{ github.head_ref }}" >> "$GITHUB_OUTPUT"
else
echo "ref=956b34bcf5b0b072cd7c8fd2e546a9beb66a866a" >> "$GITHUB_OUTPUT"
fi
- name: Checkout
uses: actions/checkout@v4
with:
repository: vechain/thor-e2e-tests
ref: ${{ steps.set-ref.outputs.ref }}
- name: Download artifact
uses: actions/download-artifact@v4
with:
name: vechain-thor-image-${{ github.sha }}
path: /tmp
- name: Setup Node JS
uses: actions/setup-node@v4
with:
node-version: '20.x'
- name: Load image
run: |
docker load --input /tmp/vechain-thor.tar
docker image ls -a
- name: Run Tests
run: |
export THOR_IMAGE=vechain/thor:${{ github.sha }}
yarn install
yarn docker:up
yarn test
- uses: actions/upload-artifact@v4
if: success() || failure()
with:
name: e2e-test-results-${{ github.sha }}
path: ./junit.xml
retention-days: 14