-
Notifications
You must be signed in to change notification settings - Fork 249
77 lines (64 loc) · 1.91 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
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:
- name: Checkout
uses: actions/checkout@v4
with:
repository: vechain/thor-e2e-tests
# https://github.com/vechain/thor-e2e-tests/tree/209f6ea9a81a98dc2d5e42bf036d2878c5837036
ref: 209f6ea9a81a98dc2d5e42bf036d2878c5837036
- 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