11 lines
346 B
YAML
11 lines
346 B
YAML
pipeline:
|
|
build-package:
|
|
image: python:3.9-slim-bullseye
|
|
commands:
|
|
- curl -fsSL https://deb.nodesource.com/setup_19.x | bash - &&\
|
|
- apt update && apt install build-essential nodejs -y
|
|
- python -m pip install -U jupyterlab~=3.5.2
|
|
- pip install build
|
|
- python -m build -s
|
|
- sleep 500
|