aboutsummaryrefslogtreecommitdiffstats
path: root/.gitlab-ci.yml
diff options
context:
space:
mode:
authorDavid Robillard <d@drobilla.net>2020-06-21 18:50:55 +0200
committerDavid Robillard <d@drobilla.net>2020-10-27 13:13:59 +0100
commitd43267410649b7526e337babf697d7fb26605ddf (patch)
tree9c92ca1a8cf2b6714e3187733c304009ae18148c /.gitlab-ci.yml
parent2c5728b6671a6877317f9dfa70ec55d85caa40d7 (diff)
downloadserd-d43267410649b7526e337babf697d7fb26605ddf.tar.gz
serd-d43267410649b7526e337babf697d7fb26605ddf.tar.bz2
serd-d43267410649b7526e337babf697d7fb26605ddf.zip
WIP: Add Python bindings
Diffstat (limited to '.gitlab-ci.yml')
-rw-r--r--.gitlab-ci.yml8
1 files changed, 4 insertions, 4 deletions
diff --git a/.gitlab-ci.yml b/.gitlab-ci.yml
index 47c96038..f63a5857 100644
--- a/.gitlab-ci.yml
+++ b/.gitlab-ci.yml
@@ -77,13 +77,13 @@ test:arm64_rel:
x64_dbg:
<<: *build_definition
image: lv2plugin/debian-x64
- script: python ./waf configure build -dST --werror --docs
+ script: python3 ./waf configure build -dST --werror --docs
test:x64_dbg:
<<: *test_definition
image: lv2plugin/debian-x64
script:
- - python ./waf test
+ - python3 ./waf test
- cp doc/*.svg build/doc/
- groff -Thtml -P -l -P -r -man -wall doc/serdi.1 > build/doc/serdi.html
needs: ["x64_dbg"]
@@ -94,12 +94,12 @@ test:x64_dbg:
x64_rel:
<<: *build_definition
image: lv2plugin/debian-x64
- script: python ./waf configure build -ST --werror
+ script: python3 ./waf configure build -ST --werror
test:x64_rel:
<<: *test_definition
image: lv2plugin/debian-x64
- script: python ./waf test
+ script: python3 ./waf test
needs: ["x64_rel"]