-
Notifications
You must be signed in to change notification settings - Fork 170
53 lines (52 loc) · 1.37 KB
/
juno-test.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: Juno Test
on:
push:
branches:
- main
- develop
pull_request:
workflow_dispatch:
jobs:
test:
name: Run Tests
strategy:
fail-fast: false
matrix:
go: [ '1.22' ]
os: [ ubuntu-latest, macos-latest, self-hosted-linux-arm64]
runs-on: ${{ matrix.os }}
env:
VM_DEBUG: true
steps:
- uses: actions/checkout@v3
- name: Set up go
uses: actions/[email protected]
with:
go-version-file: go.mod
cache: true
- uses: dtolnay/rust-toolchain@stable
- uses: Swatinem/rust-cache@v2
with:
workspaces: |
vm/rust
core/rust
starknet/rust
- name: Install deps
run: make install-deps
- name: Install Jemalloc (Ubuntu or self-hosted)
if: runner.os == 'Linux'
run: sudo apt-get update -qq && sudo apt-get install -y libjemalloc-dev libjemalloc2 -y
- name: Install dependencies (macOS)
if: runner.os == 'macOS'
run: brew install jemalloc
- name: Tests
run: make test-cover
- name: Benchmark
run: make benchmarks
- name: Upload coverage to Codecov
uses: codecov/codecov-action@v3
if: matrix.os == 'ubuntu-latest'
with:
fail_ci_if_error: true
files: ./coverage/coverage.out
verbose: true