LogarithmPlotter/ci/drone.yml
Ad5001 b5600046e9
Some checks failed
continuous-integration/drone/push Build is failing
Fixing build to add sympy.
2022-03-05 20:58:38 +01:00

52 lines
1.3 KiB
YAML

kind: pipeline
name: build-test
platform:
os: linux
arch: amd64
steps:
- name: submodules
image: alpine/git
commands:
- git submodule update --init --recursive
- name: Linux test
image: ad5001/ubuntu-pyside2-xvfb:hirsute-5.15.2
commands:
- pip3 install sympy
- 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 test
image: ad5001/ubuntu-pyside2-xvfb-wine:win7-5.15.2
commands:
- # For some reason, launching GUI apps with wine, even with xvfb-run, fails.
- pip install sympy
- xvfb-run python run.py --test-build --no-check-for-updates
- xvfb-run python run.py --test-build --no-check-for-updates ./ci/test1.lpf
- xvfb-run python run.py --test-build --no-check-for-updates ./ci/test2.lpf
when:
event: [ push, tag ]
- name: Linux packaging
image: ad5001/accountfree-build-img:hirsute-5.15.2
commands:
- bash scripts/package-linux.sh
when:
event: [ push, tag ]
- name: Windows building
image: ad5001/accountfree-build-img-wine:win7-5.15.2
commands:
- bash scripts/build-wine.sh
- bash scripts/package-wine.sh
when:
event: [ push, tag ]