LogarithmPlotter/ci/drone.yml

49 lines
1.3 KiB
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
- name: Linux test
2024-01-11 00:49:29 +00:00
image: ad5001/ubuntu-pyside6-xvfb:jammy-6.6.1
commands:
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 ]
# - name: Windows test
2023-05-22 05:43:44 +00:00
# image: ad5001/ubuntu-pyside6-xvfb-wine:win7-6.5.0-rev1
# commands:
# - # For some reason, launching GUI apps with wine, even with xvfb-run, fails.
# - 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/ubuntu-pyside6-xvfb:jammy-6.5.0
# commands:
# - bash scripts/package-linux.sh
# when:
# event: [ push, tag ]
- name: Windows building
2024-01-11 00:49:29 +00:00
image: ad5001/ubuntu-pyside6-xvfb-wine:win10-6.6.1
commands:
- bash scripts/build-wine.sh
- bash scripts/package-wine.sh
when:
event: [ push, tag ]