mirror of
https://codeberg.org/librecell/lctime
synced 2026-05-31 00:15:16 +08:00
22 lines
708 B
YAML
22 lines
708 B
YAML
# SPDX-FileCopyrightText: 2022-2024 Thomas Kramer
|
|
#
|
|
# SPDX-License-Identifier: CC0-1.0
|
|
|
|
steps:
|
|
test:
|
|
#image: python:3.8-bullseye # For local debuggin: podman run -it --rm python:3.8-bullseye
|
|
image: python
|
|
when:
|
|
- event: manual
|
|
- event: push
|
|
commands:
|
|
#- apt update
|
|
- python3 --version
|
|
- pip3 --version
|
|
- apt install -y cython3 ngspice
|
|
- apt install -y python3-numpy python3-scipy python3-matplotlib python3-networkx python3-sympy python3-joblib python3-z3
|
|
- apt install -y libjpeg-dev # Weird dependency.
|
|
- python3 -m pip install .
|
|
- ./run_tests.sh
|
|
|