forked from VUnit/vunit
-
Notifications
You must be signed in to change notification settings - Fork 0
174 lines (142 loc) · 3.68 KB
/
push.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
164
165
166
167
168
169
170
171
172
173
174
name: 'push'
on:
push:
pull_request:
schedule:
- cron: '0 0 * * 5'
env:
# https://github.com/tox-dev/tox/issues/1468
PY_COLORS: 1
jobs:
#
# Python code format
#
fmt:
runs-on: ubuntu-latest
name: '🐍 black'
steps:
- name: '🧰 Checkout'
uses: actions/checkout@v3
- name: '🐍 Setup Python'
uses: actions/setup-python@v4
with:
python-version: '3.11'
- name: '🐍 Install dependencies'
run: |
pip install -U pip --progress-bar off
pip install -U virtualenv tox --progress-bar off
- name: '🐍 Run black'
run: tox -e py311-fmt -- --check
#
# Linux linting and unit tests
#
lin:
runs-on: ubuntu-latest
strategy:
fail-fast: false
matrix:
include:
- { py: '3.11' , task: 311-lint }
- { py: '3.7' , task: 37-unit }
- { py: '3.11' , task: 311-unit }
name: '🐧 Ubuntu · ${{ matrix.task }}'
steps:
- name: '🧰 Checkout'
uses: actions/checkout@v3
- name: '🐍 Setup Python'
uses: actions/setup-python@v4
with:
python-version: ${{ matrix.py }}
- name: '🐍 Install dependencies'
run: |
pip install -U pip --progress-bar off
pip install -U virtualenv tox --progress-bar off
- name: '🚧 Run job'
run: tox -e py${{ matrix.task }} -- --color=yes
#
# Docker (Linux) acceptance tests
#
docker:
runs-on: ubuntu-latest
strategy:
fail-fast: false
matrix:
task: [
{do: 311-acceptance, tag: llvm},
{do: 311-vcomponents, tag: mcode},
]
name: '🛳️ Container · ${{ matrix.task.do }} · ${{ matrix.task.tag }}'
steps:
- name: '🧰 Checkout'
uses: actions/checkout@v3
with:
submodules: recursive
- name: '🚧 Run job'
run: docker run --rm -tv $(pwd):/src -w /src ghcr.io/vunit/dev/${{ matrix.task.tag }} tox -e py${{ matrix.task.do }}-ghdl
#
# Windows (MSYS2) with 'nightly' GHDL
#
win:
runs-on: windows-latest
strategy:
fail-fast: false
matrix:
task: [
39-acceptance-ghdl,
39-vcomponents-ghdl,
39-lint,
39-unit,
]
name: '🟦 Windows · nightly · ${{ matrix.task }}'
defaults:
run:
shell: msys2 {0}
steps:
- name: '🟦 Setup MSYS2'
uses: msys2/setup-msys2@v2
with:
msystem: MINGW64
update: true
install: mingw-w64-x86_64-python-pip
- name: '🧰 Checkout'
uses: actions/checkout@v3
with:
submodules: recursive
- name: '⚙️ Setup GHDL'
uses: ghdl/setup-ghdl-ci@master
with:
backend: llvm
- name: '🐍 Install dependencies'
run: pip install -U tox --progress-bar off
- name: '🚧 Run job'
run: tox -e py${{ matrix.task }} -- --color=yes
#
# Deploy to PyPI
#
deploy:
runs-on: ubuntu-latest
needs: [ fmt, lin, docker, win ]
if: github.event_name == 'push' && startsWith(github.ref, 'refs/tags/v')
name: '🚀 Deploy'
steps:
- name: '🧰 Checkout'
uses: actions/checkout@v3
with:
submodules: recursive
- name: '🐍 Setup Python'
uses: actions/setup-python@v4
with:
python-version: '3.11'
- name: '🐍 Install dependencies'
run: |
pip install -U pip
pip install -U setuptools wheel twine
- name: '🚀 Build and deploy to PyPI'
if: github.repository == 'VUnit/vunit'
env:
TWINE_USERNAME: __token__
TWINE_PASSWORD: ${{ secrets.VUNIT_HDL_PYPI_DEPLOY_TOKEN }}
run: |
./tools/release.py validate
python setup.py sdist
twine upload dist/*