-
Notifications
You must be signed in to change notification settings - Fork 2
106 lines (98 loc) · 2.63 KB
/
nuklaivm-ci.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
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
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
# Copyright (C) 2024, Nuklai. All rights reserved.
# See the file LICENSE for licensing terms.
name: NuklaiVM CI
on:
push:
branches:
- main
pull_request:
concurrency:
group: ${{ github.workflow }}-${{ github.event.pull_request.number || github.ref }}
cancel-in-progress: true
jobs:
go-mod-tidy:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- name: Set up Go
uses: ./.github/actions/install-go
- shell: bash
run: go mod tidy
- shell: bash
working-directory: ./
run: go mod tidy
- shell: bash
run: scripts/tests.clean.sh
nuklaivm-lint:
runs-on: ubuntu-latest
timeout-minutes: 10
steps:
- name: Checkout
uses: actions/checkout@v4
- name: Set up Go
uses: ./.github/actions/install-go
with:
cache-dependency-path: |
go.sum
- name: Run static analysis tests
shell: bash
run: scripts/tests.lint.sh
- name: Build vm and cli
shell: bash
run: scripts/build.sh
nuklaivm-unit-tests:
runs-on: ubuntu-20.04-32
timeout-minutes: 10
steps:
- name: Checkout
uses: actions/checkout@v4
- name: Set up Go
uses: ./.github/actions/install-go
with:
cache-dependency-path: |
go.sum
- name: Run unit tests
shell: bash
run: scripts/tests.unit.sh
- name: Run integration tests
shell: bash
run: scripts/tests.integration.sh
- name: Run e2e tests
shell: bash
run: scripts/run.sh
env:
MODE: 'test'
nuklaivm-tests:
runs-on: ubuntu-latest
needs: [go-mod-tidy, nuklaivm-lint, nuklaivm-unit-tests]
steps:
- name: Finished NuklaiVM tests
run: echo "Finished NuklaiVM tests"
nuklaivm-sync-tests:
needs: [nuklaivm-lint, nuklaivm-unit-tests]
runs-on: ubuntu-20.04-32
timeout-minutes: 25
steps:
- name: Checkout
uses: actions/checkout@v4
- name: Set up Go
uses: ./.github/actions/install-go
with:
cache-dependency-path: |
go.sum
- name: Run sync tests
shell: bash
run: scripts/run.sh
env:
MODE: 'full-test'
nuklaivm-release:
needs: [nuklaivm-sync-tests]
# We build with 20.04 to maintain max compatibility: https://github.com/golang/go/issues/57328
runs-on: ubuntu-20.04-32
steps:
- name: Checkout
uses: actions/checkout@v4
- uses: ./.github/actions/vm-release
with:
vm-name: nuklaivm
github-token: ${{ secrets.GITHUB_TOKEN }}