aboutsummaryrefslogtreecommitdiff
path: root/.builds/ubuntu.yml
diff options
context:
space:
mode:
authorEric Engestrom <eric.engestrom@intel.com>2019-12-24 10:33:54 +0000
committerHarry Jeffery <harry@exec64.co.uk>2020-02-08 00:29:25 +0000
commit04ef9440fb079736020d796142de18008da3ba62 (patch)
tree014e98965acaa95cd7ebf4569e5d052f4ef33833 /.builds/ubuntu.yml
parent2dd0c1469e2d87c5263fb513c331b82617ca2e12 (diff)
downloadimv-04ef9440fb079736020d796142de18008da3ba62.tar.gz
drop the old Makefile and update the docs
Diffstat (limited to '.builds/ubuntu.yml')
-rw-r--r--.builds/ubuntu.yml19
1 files changed, 3 insertions, 16 deletions
diff --git a/.builds/ubuntu.yml b/.builds/ubuntu.yml
index 534573a..cc35286 100644
--- a/.builds/ubuntu.yml
+++ b/.builds/ubuntu.yml
@@ -22,23 +22,10 @@ packages:
sources:
- https://git.sr.ht/~exec64/imv
tasks:
- - configure: |
- cd imv
- sed -i -e 's/BACKEND_\(.*\)=no/BACKEND_\1=yes/' config.mk
- # libnsgif isn't packaged by ubuntu
- sed -i -e 's/BACKEND_LIBNSGIF=yes/BACKEND_LIBNSGIF=no/' config.mk
- cat config.mk
- - make_gcc: |
- cd imv
- CC=gcc BUILDDIR=gcc make
- CC=gcc BUILDDIR=gcc make check
- - make_clang: |
- cd imv
- CC=clang BUILDDIR=clang make
- CC=clang BUILDDIR=clang make check
- - meson_gcc: |
+ # libnsgif isn't packaged by ubuntu
+ - gcc: |
CC=gcc meson imv build_gcc -D auto_features=enabled -D libnsgif=disabled
CC=gcc ninja -C build_gcc test
- - meson_clang: |
+ - clang: |
CC=clang meson imv build_clang -D auto_features=enabled -D libnsgif=disabled
CC=clang ninja -C build_clang test