From d43267410649b7526e337babf697d7fb26605ddf Mon Sep 17 00:00:00 2001 From: David Robillard Date: Sun, 21 Jun 2020 18:50:55 +0200 Subject: WIP: Add Python bindings --- .gitlab-ci.yml | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) (limited to '.gitlab-ci.yml') 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"] -- cgit v1.2.1