-
Notifications
You must be signed in to change notification settings - Fork 6
202 lines (161 loc) · 5.03 KB
/
build.yml
File metadata and controls
202 lines (161 loc) · 5.03 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
name: Build and Test
on:
push:
branches: main
pull_request:
branches: '*'
concurrency:
group: ${{ github.workflow }}-${{ github.event.pull_request.number || github.ref }}
cancel-in-progress: true
env:
# Min and max limits of jupyterlite-core versions that this should work on.
# Changes here should be synchronised with pyproject.toml dependencies section.
MIN_LITE_VERSION: jupyterlite-core==0.7.0
MAX_LITE_VERSION: --pre jupyterlite-core<0.8.0
LAB_VERSION: jupyterlab>=4.0.0,<5
jobs:
build:
name: Build and upload wheel
runs-on: ubuntu-latest
steps:
- name: Checkout
uses: actions/checkout@v6
- name: Setup Python
uses: actions/setup-python@v6
with:
python-version: '3.14'
- name: Base Setup
uses: jupyterlab/maintainer-tools/.github/actions/base-setup@v1
- name: Install dependencies
run: python -m pip install -U ${LAB_VERSION}
- name: Lint the extension
run: |
set -eux
jlpm
jlpm run lint:check
- name: Test the extension
run: |
set -eux
jlpm run test
- name: Build the extension
run: |
set -eux
python -m pip install .[test]
jupyter labextension list
jupyter labextension list 2>&1 | grep -ie "@jupyterlite/terminal.*OK"
- name: List installed packages
run: |
python -m pip list
- name: Package the extension
run: |
set -eux
pip install build
python -m build
pip uninstall -y "jupyterlite_terminal" jupyterlab
- name: Upload extension packages
uses: actions/upload-artifact@v7
with:
name: extension-artifacts
path: dist/jupyterlite_terminal*
if-no-files-found: error
test_isolated:
name: Test isolated
needs: build
runs-on: ubuntu-latest
steps:
- name: Setup Python
uses: actions/setup-python@v6
with:
python-version: '3.14'
- uses: actions/download-artifact@v8
with:
name: extension-artifacts
- name: Install and Test
run: |
set -eux
# Remove NodeJS, twice to take care of system and locally installed node versions.
sudo rm -rf $(which node)
sudo rm -rf $(which node)
pip install ${LAB_VERSION} jupyterlite_terminal*.whl
jupyter labextension list
jupyter labextension list 2>&1 | grep -ie "@jupyterlite/terminal.*OK"
integration-tests:
name: Integration tests ${{ matrix.python-version}} ${{ matrix.lite-version}}
needs: build
runs-on: ubuntu-latest
strategy:
fail-fast: false
matrix:
lite-version: ['min', 'normal', 'max']
python-version: ['3.10', '3.14']
env:
PLAYWRIGHT_BROWSERS_PATH: ${{ github.workspace }}/pw-browsers
steps:
- name: Checkout
uses: actions/checkout@v6
- name: Setup Python ${{ matrix.python-version }}
uses: actions/setup-python@v6
with:
python-version: ${{ matrix.python-version }}
- name: Base Setup
uses: jupyterlab/maintainer-tools/.github/actions/base-setup@v1
- name: Download extension package
uses: actions/download-artifact@v8
with:
name: extension-artifacts
- name: Pre-install minimum jupyterlite-core
if: ${{ matrix.lite-version == 'min' }}
run: |
python -m pip install ${MIN_LITE_VERSION}
- name: Pre-install maximum jupyterlite-core
if: ${{ matrix.lite-version == 'max' }}
run: |
python -m pip install ${MAX_LITE_VERSION}
- name: Install the extension
run: |
set -eux
python -m pip install jupyterlite_terminal*.whl ${LAB_VERSION}
- name: List installed packages
run: |
python -m pip list
- name: Micromamba needed for cockle_wasm_env
uses: mamba-org/setup-micromamba@main
- name: Install dependencies
working-directory: ui-tests
env:
YARN_ENABLE_IMMUTABLE_INSTALLS: 0
PLAYWRIGHT_SKIP_BROWSER_DOWNLOAD: 1
run: |
jlpm install
jlpm build
- name: Set up browser cache
uses: actions/cache@v5
with:
path: |
${{ github.workspace }}/pw-browsers
key: ${{ runner.os }}-${{ hashFiles('ui-tests/yarn.lock') }}
- name: Install browser
run: jlpm playwright install chromium
working-directory: ui-tests
- name: Execute integration tests
working-directory: ui-tests
run: |
jlpm test
- name: Upload Playwright Test report
if: always()
uses: actions/upload-artifact@v7
with:
name: playwright-tests_${{ matrix.python-version }}_${{ matrix.lite-version}}
path: |
ui-tests/test-results
ui-tests/playwright-report
check_links:
name: Check Links
runs-on: ubuntu-latest
timeout-minutes: 15
steps:
- uses: actions/checkout@v6
- uses: jupyterlab/maintainer-tools/.github/actions/base-setup@v1
- uses: jupyterlab/maintainer-tools/.github/actions/check-links@v1
with:
ignore_glob: docs/*.md