From 87c855e8a1a3eec4debfc2145e649fc8d9e60894 Mon Sep 17 00:00:00 2001 From: Ad5001 Date: Sat, 14 Aug 2021 16:17:19 +0200 Subject: [PATCH] Moving drone configuration to CI. --- .drone/.drone.yml => ci/drone.yml | 8 ++++---- {.drone => ci}/test1.lpf | 0 {.drone => ci}/test2.lpf | 0 3 files changed, 4 insertions(+), 4 deletions(-) rename .drone/.drone.yml => ci/drone.yml (78%) rename {.drone => ci}/test1.lpf (100%) rename {.drone => ci}/test2.lpf (100%) diff --git a/.drone/.drone.yml b/ci/drone.yml similarity index 78% rename from .drone/.drone.yml rename to ci/drone.yml index 1c8fbf0..de2e86c 100644 --- a/.drone/.drone.yml +++ b/ci/drone.yml @@ -15,8 +15,8 @@ steps: image: ad5001/ubuntu-pyside2-xvfb:hirsute-5.15.2 commands: - xvfb-run python3 run.py --test-build - - xvfb-run python3 run.py --test-build ./.drone/test1.lpf - - xvfb-run python3 run.py --test-build ./.drone/test2.lpf + - xvfb-run python3 run.py --test-build ./ci/test1.lpf + - xvfb-run python3 run.py --test-build ./ci/test2.lpf when: event: [ push, tag ] @@ -25,8 +25,8 @@ steps: commands: - # For some reason, launching GUI apps with wine, even with xvfb-run, fails. - #xvfb-run python run.py --test-build - - #xvfb-run python run.py --test-build ./.drone/test1.lpf - - #xvfb-run python run.py --test-build ./.drone/test2.lpf + - #xvfb-run python run.py --test-build ./ci/test1.lpf + - #xvfb-run python run.py --test-build ./ci/test2.lpf when: event: [ push, tag ] diff --git a/.drone/test1.lpf b/ci/test1.lpf similarity index 100% rename from .drone/test1.lpf rename to ci/test1.lpf diff --git a/.drone/test2.lpf b/ci/test2.lpf similarity index 100% rename from .drone/test2.lpf rename to ci/test2.lpf