-
Notifications
You must be signed in to change notification settings - Fork 717
52 lines (44 loc) · 1.09 KB
/
test-from-prover.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
name: Test from zkevm-prover call
on:
workflow_call:
inputs:
prover_image:
required: true
type: string
secrets:
DOCKERHUB_USERNAME:
required: true
DOCKERHUB_TOKEN:
required: true
jobs:
test-from-prover:
runs-on: [self-hosted, linux, X64, hc]
strategy:
matrix:
go-version: [ 1.21.x ]
goarch: [ "amd64" ]
e2e-group: [ 2 ]
steps:
- name: Checkout code
uses: actions/checkout@v4
with:
repository: 0xPolygonHermez/zkevm-node
- name: Install Go
uses: actions/setup-go@v5
with:
go-version: ${{ matrix.go-version }}
env:
GOARCH: ${{ matrix.goarch }}
- name: Login to DockerHub
uses: docker/login-action@v3
with:
username: ${{ secrets.DOCKERHUB_USERNAME }}
password: ${{ secrets.DOCKERHUB_TOKEN }}
- name: Build Docker
run: make build-docker
- name: Compile SCs
run: make compile-scs
working-directory: test
- name: Test
run: make test-full-non-e2e
working-directory: test