-
Notifications
You must be signed in to change notification settings - Fork 26
163 lines (131 loc) · 3.89 KB
/
benchmark.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
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
name: Tests
on:
push:
branches:
- main
tags:
- "**"
pull_request:
branches:
- "**"
concurrency:
group: ${{ github.event_name == 'pull_request' && format('{0}-{1}', github.workflow_ref, github.event.pull_request.number) || github.run_id }}
cancel-in-progress: true
jobs:
tests:
name: Unit Tests
runs-on: ${{ matrix.os }}
strategy:
fail-fast: false
matrix:
os: [macos-latest, ubuntu-latest, windows-latest]
python-version: ["3.8", "3.9", "3.10", "3.11"]
env:
stubtest_args: ${{ matrix.python-version == '3.11' && '--allowlist wheel/stubtest.allowlist.3-11-plus' || ''}}
steps:
- uses: actions/checkout@v4
with:
fetch-depth: 1
- uses: chia-network/actions/setup-python@main
name: Install Python ${{ matrix.python-version }}
with:
python-version: ${{ matrix.python-version }}
- name: Update pip
run: |
python -m pip install --upgrade pip
- name: Set up rust
uses: dtolnay/rust-toolchain@stable
- name: setup venv
run: |
python -m venv venv
- uses: chia-network/actions/activate-venv@main
- name: Install dependencies
run: |
python -m pip install maturin
rustup target add x86_64-unknown-linux-musl
python -m pip install pytest pytest-xdist
python -m pip install mypy
python -m pip install black
- name: Build
run: |
python -m pip install clvm_tools colorama blspy chia-blockchain==2.1.2 clvm==0.9.8
maturin develop --release -m wheel/Cargo.toml
- name: python mypy
run: |
mypy tests
- name: python mypy stubtest
shell: bash
run: |
FAILURE=0
echo "::group::concise"
if ! stubtest ${{ env.stubtest_args }} --allowlist wheel/stubtest.allowlist --concise chia_rs
then
FAILURE=1
fi
echo "::endgroup::"
echo "::group::complete"
if ! stubtest ${{ env.stubtest_args }} --allowlist wheel/stubtest.allowlist chia_rs
then
FAILURE=1
fi
echo "::endgroup::"
exit ${FAILURE}
- name: python black
run: |
black --check tests
black --check wheel/generate_type_stubs.py
- name: python tests
run: |
pytest tests
generator-benchmarks:
name: Generator performance
runs-on: benchmark
strategy:
fail-fast: false
matrix:
python-version: ["3.10", "3.11"]
steps:
- uses: actions/checkout@v4
with:
fetch-depth: 1
- uses: chia-network/actions/setup-python@main
name: Install Python ${{ matrix.python-version }}
with:
python-version: ${{ matrix.python-version }}
- name: Set up rust
uses: dtolnay/rust-toolchain@stable
- name: setup venv
run: |
python -m venv venv
- uses: chia-network/actions/activate-venv@main
- name: Install dependencies
run: |
python -m pip install --upgrade pip
python -m pip install maturin colorama clvm_tools
rustup target add x86_64-unknown-linux-musl
- name: Build
run: |
maturin develop --release -m wheel/Cargo.toml
- name: test generators
run: |
cd tests
./test-generators.py
- name: Run cost checks
run: |
cd tests
./generate-programs.py
./run-programs.py
benchmarks:
name: rust benchmarks
runs-on: benchmark
strategy:
fail-fast: false
steps:
- uses: actions/checkout@v4
with:
fetch-depth: 1
- name: Set up rust
uses: dtolnay/rust-toolchain@stable
- name: cargo bench
run: |
cargo bench --workspace --exclude chia_rs