-
Notifications
You must be signed in to change notification settings - Fork 5
247 lines (212 loc) · 7.12 KB
/
Copy pathbuild-cli-tools.yml
File metadata and controls
247 lines (212 loc) · 7.12 KB
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
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
name: Build & Release CLI Tools
on:
push:
tags:
- 'eos-cli-v*'
- 'eos-*-cli-v*'
workflow_dispatch:
inputs:
tool:
description: 'CLI tool to build (leave empty for all, or specify app name from cli-tools/)'
required: false
type: string
default: ''
workflow_call:
permissions:
contents: write
concurrency:
group: ${{ github.workflow }}-${{ github.ref }}
cancel-in-progress: true
jobs:
discover:
runs-on: ubuntu-latest
outputs:
node_matrix: ${{ steps.discover.outputs.node_matrix }}
python_matrix: ${{ steps.discover.outputs.python_matrix }}
has_node: ${{ steps.discover.outputs.has_node }}
has_python: ${{ steps.discover.outputs.has_python }}
steps:
- uses: actions/checkout@v4
- name: Discover CLI tools
id: discover
run: |
FILTER="${{ inputs.tool }}"
NODE_APPS="[]"
PYTHON_APPS="[]"
for dir in cli-tools/*/; do
APP_NAME=$(basename "$dir")
if [ -n "$FILTER" ] && [ "$APP_NAME" != "$FILTER" ]; then
continue
fi
if [ -f "${dir}package.json" ]; then
NODE_APPS=$(echo "$NODE_APPS" | jq -c --arg app "$APP_NAME" '. + [$app]')
elif [ -f "${dir}pyproject.toml" ]; then
PYTHON_APPS=$(echo "$PYTHON_APPS" | jq -c --arg app "$APP_NAME" '. + [$app]')
fi
done
echo "node_matrix={\"app\":$NODE_APPS}" >> "$GITHUB_OUTPUT"
echo "python_matrix={\"app\":$PYTHON_APPS}" >> "$GITHUB_OUTPUT"
NODE_COUNT=$(echo "$NODE_APPS" | jq '. | length')
PYTHON_COUNT=$(echo "$PYTHON_APPS" | jq '. | length')
echo "has_node=$( [ "$NODE_COUNT" -gt 0 ] && echo true || echo false )" >> "$GITHUB_OUTPUT"
echo "has_python=$( [ "$PYTHON_COUNT" -gt 0 ] && echo true || echo false )" >> "$GITHUB_OUTPUT"
build-node:
needs: discover
if: needs.discover.outputs.has_node == 'true'
runs-on: ubuntu-latest
strategy:
fail-fast: false
matrix: ${{ fromJson(needs.discover.outputs.node_matrix) }}
steps:
- uses: actions/checkout@v4
- uses: actions/setup-node@v4
with:
node-version: 20
- name: Install dependencies
working-directory: cli-tools/${{ matrix.app }}
run: npm ci 2>/dev/null || npm install 2>/dev/null || true
- name: Run tests
working-directory: cli-tools/${{ matrix.app }}
run: npm test 2>/dev/null || true
- name: Determine version
id: version
run: |
if [[ "$GITHUB_REF_NAME" == eos-${{ matrix.app }}-cli-v* ]]; then
VERSION="${GITHUB_REF_NAME#eos-${{ matrix.app }}-cli-v}"
elif [[ "$GITHUB_REF_NAME" == eos-cli-v* ]]; then
VERSION="${GITHUB_REF_NAME#eos-cli-v}"
else
VERSION=$(jq -r '.version // "0.0.0-dev"' cli-tools/${{ matrix.app }}/package.json)
fi
echo "version=$VERSION" >> "$GITHUB_OUTPUT"
- name: Update version
working-directory: cli-tools/${{ matrix.app }}
run: |
jq --arg v "${{ steps.version.outputs.version }}" '.version = $v' package.json > tmp.json
mv tmp.json package.json
- name: Pack tarball
working-directory: cli-tools/${{ matrix.app }}
run: |
mkdir -p ../../dist
npm pack --pack-destination ../../dist
- name: Upload artifact
uses: actions/upload-artifact@v4
with:
name: cli-node-${{ matrix.app }}
path: dist/*.tgz
build-python:
needs: discover
if: needs.discover.outputs.has_python == 'true'
runs-on: ubuntu-latest
strategy:
fail-fast: false
matrix: ${{ fromJson(needs.discover.outputs.python_matrix) }}
steps:
- uses: actions/checkout@v4
- uses: actions/setup-python@v5
with:
python-version: '3.12'
- name: Install build tools
run: pip install build
- name: Run tests
working-directory: cli-tools/${{ matrix.app }}
run: |
pip install -e ".[dev]" 2>/dev/null || pip install -e . 2>/dev/null || true
python -m pytest 2>/dev/null || true
- name: Build wheel and sdist
working-directory: cli-tools/${{ matrix.app }}
run: |
python -m build
mkdir -p ../../dist
cp dist/*.whl dist/*.tar.gz ../../dist/ 2>/dev/null || true
- name: Upload artifact
uses: actions/upload-artifact@v4
with:
name: cli-python-${{ matrix.app }}
path: dist/*
publish-npm:
needs: [discover, build-node]
if: >
always() &&
needs.build-node.result == 'success' &&
startsWith(github.ref, 'refs/tags/')
runs-on: ubuntu-latest
strategy:
fail-fast: false
matrix: ${{ fromJson(needs.discover.outputs.node_matrix) }}
steps:
- name: Download artifact
uses: actions/download-artifact@v4
with:
name: cli-node-${{ matrix.app }}
path: dist
- uses: actions/setup-node@v4
with:
node-version: 20
registry-url: 'https://registry.npmjs.org'
- name: Publish to npm
if: env.NPM_TOKEN != ''
run: |
for tgz in dist/*.tgz; do
echo "Publishing $tgz ..."
npm publish "$tgz" --access public || true
done
env:
NPM_TOKEN: ${{ secrets.NPM_TOKEN }}
NODE_AUTH_TOKEN: ${{ secrets.NPM_TOKEN }}
publish-pypi:
needs: [discover, build-python]
if: >
always() &&
needs.build-python.result == 'success' &&
startsWith(github.ref, 'refs/tags/')
runs-on: ubuntu-latest
strategy:
fail-fast: false
matrix: ${{ fromJson(needs.discover.outputs.python_matrix) }}
steps:
- name: Download artifact
uses: actions/download-artifact@v4
with:
name: cli-python-${{ matrix.app }}
path: dist
- uses: actions/setup-python@v5
with:
python-version: '3.12'
- name: Install twine
run: pip install twine
- name: Publish to PyPI
if: env.PYPI_API_TOKEN != ''
run: |
twine upload dist/*.whl dist/*.tar.gz || true
env:
PYPI_API_TOKEN: ${{ secrets.PYPI_API_TOKEN }}
TWINE_USERNAME: __token__
TWINE_PASSWORD: ${{ secrets.PYPI_API_TOKEN }}
release:
needs: [build-node, build-python]
if: always() && startsWith(github.ref, 'refs/tags/')
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- name: Download all artifacts
uses: actions/download-artifact@v4
with:
path: dist
merge-multiple: true
- name: Create Release
uses: softprops/action-gh-release@v3
with:
tag_name: ${{ github.ref_name }}
name: "CLI Tools ${{ github.ref_name }}"
body: |
## CLI Tools Release
### Node.js tools
```bash
npm install -g <package-name>
```
### Python tools
```bash
pip install <package-name>
```
files: dist/*