jupyterlab_sandbox_theme/.woodpecker.yml

11 lines
350 B
YAML
Raw Normal View History

2023-01-23 10:37:59 +00:00
pipeline:
build-package:
2023-01-23 10:44:10 +00:00
image: python:3.9-slim-bullseye
2023-01-23 10:37:59 +00:00
commands:
2023-01-23 10:53:18 +00:00
- curl -fsSL https://deb.nodesource.com/setup_14.x | sudo -E bash -
2023-01-23 10:47:08 +00:00
- apt update && apt install build-essential nodejs -y
2023-01-23 10:37:59 +00:00
- python -m pip install -U jupyterlab~=3.5.2
- pip install build
- python -m build -s
2023-01-23 10:38:30 +00:00
- sleep 500