-
Notifications
You must be signed in to change notification settings - Fork 26
197 lines (171 loc) · 5.99 KB
/
cd.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
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
name: Run CD
permissions: read-all
on:
workflow_dispatch:
jobs:
build-artifacts:
name: Build Artifacts
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
with:
lfs: true
- name: setup CI
uses: lava-nc/ci-setup-composite-action@v1.3
with:
repository: 'Lava-Optimization'
- name: Build artifacts
run: |
pipx run poetry build
- name: Archive artifacts
uses: actions/upload-artifact@v3
with:
name: lava-optimization
path: |
dist
retention-days: 10
test-artifact-install:
name: Test Artifact Install
runs-on: ubuntu-latest
needs: build-artifacts
steps:
- uses: actions/checkout@v3
with:
lfs: true
- name: Download lava-optimization artifact
uses: actions/download-artifact@v3
with:
name: lava-optimization
- name: Set up Python 3.10
uses: actions/setup-python@v4
with:
python-version: "3.10"
- name: Test artifact tar.gz
run: |
python3 -m venv artifact-test
source artifact-test/bin/activate
artifact=$(ls | grep lava_optimization | grep tar)
pip install --no-input $artifact
python -c 'import lava.lib.optimization.solvers'
python -c 'import lava.lib.optimization.solvers.generic'
pip uninstall -y lava-optimization
deactivate
rm -rf artifact-test
- name: Test artifact .whl
run: |
python3 -m venv artifact-test
source artifact-test/bin/activate
artifact=$(ls | grep lava_optimization | grep whl)
pip install --no-input $artifact
python -c 'import lava.lib.optimization.solvers'
python -c 'import lava.lib.optimization.solvers.generic'
pip uninstall -y lava-optimization
deactivate
rm -rf artifact-test
test-artifact-use:
name: Test Artifact With Unit Tests
runs-on: ubuntu-latest
needs: [build-artifacts, test-artifact-install]
steps:
- name: Download lava-optimization artifact
uses: actions/download-artifact@v3
with:
name: lava-optimization
- name: Set up Python 3.10
uses: actions/setup-python@v4
with:
python-version: "3.10"
- name: Test artifact tar.gz
run: |
mkdir tmp
cd tmp
cp ../lava* .
python3 -m venv artifact-unittest
source artifact-unittest/bin/activate
pip install -U pip
pip install "nbconvert>=7.2.10,<7.3" pytest>=7.2.0 matplotlib>=3.5.1 ipykernel>=6.15.0 nbformat>=5.3.0
artifact=$(ls | grep lava_optimization | grep tar)
pip install --no-input $artifact
tar -xvf $artifact
mv ./lava*/tests .
mv ./lava*/tutorials .
python -m unittest -vv
deactivate
cd ../
rm -rf tmp
- name: Test artifact .whl
run: |
mkdir tmp
cd tmp
cp ../lava* .
python3 -m venv artifact-unittest
source artifact-unittest/bin/activate
pip install -U pip
pip install "nbconvert>=7.2.10,<7.3" pytest>=7.2.0 matplotlib>=3.5.1 ipykernel>=6.15.0 nbformat>=5.3.0
artifact=$(ls | grep lava_optimization | grep whl)
pip install --no-input $artifact
# Change $artifact to tar.gz
artifact=$(ls | grep lava_optimization | grep tar)
tar -xvf $artifact
mv ./lava*/tests .
mv ./lava*/tutorials .
python -m unittest -vv
deactivate
cd ../
rm -rf tmp
upload-release-artifact:
name: Upload release artifact
runs-on: ubuntu-latest
if: github.triggering_actor == 'mgkwill' || github.triggering_actor == 'PhilippPlank' || github.triggering_actor == 'tim-shea'
environment:
name: pypi
url: https://pypi.org/p/lava-optimization/
permissions:
contents: write
id-token: write
needs: [build-artifacts, test-artifact-install, test-artifact-use]
steps:
- uses: actions/checkout@v3
with:
lfs: true
- name: setup CI
uses: lava-nc/ci-setup-composite-action@v1.3
with:
repository: 'lava-optimization'
- name: Download lava artifact
uses: actions/download-artifact@v3
with:
name: lava-optimization
- name: Check Version
id: check-version
run: |
[[ "$(pipx run poetry version --short)" =~ ^[0-9]+\.[0-9]+\.[0-9]+$ ]] || echo prerelease=true >> $GITHUB_OUTPUT
echo "release-version=$(pipx run poetry version --short)" >> $GITHUB_OUTPUT
echo "release-commit=$(git log -n 1 --pretty=format:"%H")" >> $GITHUB_OUTPUT
- name: Print Versions
run: |
[[ "$(pipx run poetry version --short)" =~ ^[0-9]+\.[0-9]+\.[0-9]+$ ]] || echo prerelease=true
echo "release-version=$(pipx run poetry version --short)"
echo "release-commit=$(git log -n 1 --pretty=format:"%H")"
- name: Create Release
uses: ncipollo/release-action@v1
with:
artifacts: "lava*"
token: ${{ secrets.GITHUB_TOKEN }}
draft: true
prerelease: steps.check-version.outputs.prerelease == 'true'
name: "Lava Optimization ${{ steps.check-version.outputs.release-version }}"
commit: "${{ steps.check-version.outputs.release-commit }}"
tag: "v${{ steps.check-version.outputs.release-version }}"
discussionCategory: "Announcements"
artifactErrorsFailBuild: true
generateReleaseNotes: true
makeLatest: true
- name: Publish to PyPI
if: steps.check-version.outputs.prerelease != 'true'
run: |
mkdir dist
cp lava* dist/.
- name: Publish package distributions to PyPI
if: steps.check-version.outputs.prerelease != 'true'
uses: pypa/gh-action-pypi-publish@release/v1