-
Notifications
You must be signed in to change notification settings - Fork 0
118 lines (96 loc) · 2.86 KB
/
python-package.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
# This workflow will install Python dependencies, run tests and lint with a variety of Python versions
# For more information see: https://docs.github.com/en/actions/automating-builds-and-tests/building-and-testing-python
name: Python package
on:
push:
branches: [ "main" ]
tags: ["*"]
pull_request:
branches: [ "main" ]
workflow_dispatch:
jobs:
test:
runs-on: ubuntu-latest
strategy:
fail-fast: false
matrix:
python-version: ["3.8", "3.9", "3.10", "3.11", "3.12"]
steps:
- uses: actions/checkout@v4
- name: Cache verilator
uses: actions/cache@v4
env:
cache-name: cache-verilator-new
with:
path: /home/runner/work/verilator
key: verilator-v5${{ env.cache-name }}
- name: Install verilator
run: |
sudo apt-get install -y --no-install-recommends help2man make g++ perl python3 autoconf flex bison libfl2 libfl-dev zlib1g zlib1g-dev
export VERILATOR_ROOT="/home/runner/work/verilator" \
export PATH="$VERILATOR_ROOT/bin:$PATH" \
sudo bash ./script/install_verilator.sh
- name: Install verilator-uvm
run: |
git clone https://github.com/antmicro/uvm-verilator.git
cd uvm-verilator
git checkout current-patches
- name: Set up Python ${{ matrix.python-version }}
uses: actions/setup-python@v5
with:
python-version: ${{ matrix.python-version }}
- name: Install Python dependencies
run: |
python -m pip install --upgrade pip
python -m pip install . -v
- name: Lint with ruff
uses: chartboost/ruff-action@v1
- name: Test
run: source compile.sh
build:
needs:
- test
name: Build distributions
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
with:
submodules: true
- uses: actions/setup-python@v5
name: Install Python
with:
python-version: "3.12"
- name: Install dependencies
run: |
python -m pip install -U build
- name: Build
run: python -m build
- name: Upload artifact
uses: actions/upload-artifact@v4
with:
path: |
dist/*.tar.gz
dist/*.whl
- name: Release
uses: softprops/action-gh-release@v2
if: startsWith(github.ref, 'refs/tags/')
with:
files: |
dist/*.tar.gz
dist/*.whl
generate_release_notes: true
# deploy:
# needs:
# - build
# runs-on: ubuntu-latest
# environment: release
# permissions:
# id-token: write
# # Only publish when a tag is pused.
# if: startsWith(github.ref, 'refs/tags/')
# steps:
# - uses: actions/download-artifact@v4
# with:
# name: artifact
# path: dist
# - uses: pypa/gh-action-pypi-publish@release/v1