LogarithmPlotter/ci/drone.yml

34 lines
810 B
YAML
Raw Normal View History

kind: pipeline
name: build-test
platform:
os: linux
arch: amd64
steps:
- name: submodules
image: alpine/git
commands:
- git submodule update --init --recursive
2024-09-18 16:01:51 +00:00
- name: Tests
image: ad5001/ubuntu-pyside6-xvfb:noble-6.7.2
commands:
2024-09-18 20:51:23 +00:00
- apt install -y texlive-base dvipng texlive-latex-extra # Install latex dependencies.
2024-09-18 20:52:53 +00:00
- bash scripts/run-tests.sh
2022-01-26 18:51:36 +00:00
- xvfb-run python3 run.py --test-build --no-check-for-updates
- xvfb-run python3 run.py --test-build --no-check-for-updates ./ci/test1.lpf
- xvfb-run python3 run.py --test-build --no-check-for-updates ./ci/test2.lpf
when:
event: [ push, tag ]
2024-09-18 16:01:51 +00:00
- name: Windows build
image: ad5001/ubuntu-pyside6-xvfb-wine:win10-6.7.2
commands:
- bash scripts/build-wine.sh
- bash scripts/package-wine.sh
when:
event: [ push, tag ]