diff --git a/test/ci/build_and_test.sh b/test/ci/build_and_test.sh index 07c5070..823c2c6 100755 --- a/test/ci/build_and_test.sh +++ b/test/ci/build_and_test.sh @@ -10,8 +10,21 @@ dub --version # on the CI system. # +# Build with dub dub build --parallel -v -dub test +# Build with Meson +mkdir -p build && cd build +meson .. +ninja + +# Run tests +./asgen_test + +# Test (Meson) install +DESTDIR=/tmp/install-ninja ninja install +cd .. + +# Test getting JS stuff and installing (dub) make js make install DESTDIR=/tmp/install-tmp