-
Notifications
You must be signed in to change notification settings - Fork 8
55 lines (43 loc) · 1.21 KB
/
build.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
name: Build
on:
push:
branches:
- main
pull_request:
branches:
- main
workflow_call:
jobs:
build:
runs-on: ubuntu-latest
steps:
- name: Checkout 🏷️
uses: actions/checkout@v4
- name: Base Setup 🕹️ 🐍
uses: jupyterlab/maintainer-tools/.github/actions/base-setup@v1
- name: Install requirements ⚙️
run: python -m pip install -U jupyterlab>=4.0 check-manifest
- name: Install dependencies ⚙️
run: jlpm install
- name: Build the extension 🏗️
run: |
set -eux
python -m pip install .
jupyter labextension list 2>&1 | grep -ie "jupyterlab-h5web.*OK"
python -m jupyterlab.browser_check
check-manifest -v
pip install build
python -m build
pip uninstall -y jupyterlab_h5web jupyterlab
rm -rf jupyterlab_h5web
- name: Upload debug logs on failure 📬
uses: actions/upload-artifact@v4
if: failure()
with:
name: Build log
path: |
/tmp/*.log
- uses: actions/upload-artifact@v4
with:
name: jupyterlab_h5web-dist
path: dist