LogarithmPlotter/ci/drone.yml
Ad5001 836d13386e
Some checks failed
continuous-integration/drone/push Build is failing
Adding building translations in CI.
2024-09-19 18:19:35 +02:00

39 lines
1,013 B
YAML

kind: pipeline
name: build-test
platform:
os: linux
arch: amd64
steps:
- name: submodules
image: alpine/git
commands:
- git submodule update --init --recursive
- name: Unit Tests
image: ad5001/ubuntu-pyside6-xvfb:noble-6.7.2-latex
commands:
- apt install -y qt6-l10n-tools
- cd LogarithmPlotter/i18n && bash release.sh
- xvfb-run bash scripts/run-tests.sh
when:
event: [ push, tag ]
- name: File Tests
image: ad5001/ubuntu-pyside6-xvfb:noble-6.7.2-latex
commands:
- 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 ]
- 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 ]