aboutsummaryrefslogtreecommitdiff
path: root/Makefile
diff options
context:
space:
mode:
authorDaniel P. Berrangé <berrange@redhat.com>2022-05-05 12:10:09 +0100
committerJohn Levon <levon@movementarian.org>2022-05-09 23:28:10 +0100
commit93709c019624acc6b079bf2a70c18b8340c9129d (patch)
tree6e60a8940a79387d45609023509f2af9e1fe7cd8 /Makefile
parentf75110385495b8b580121e14afa5dfc9681a64a3 (diff)
downloadlibvfio-user-93709c019624acc6b079bf2a70c18b8340c9129d.zip
libvfio-user-93709c019624acc6b079bf2a70c18b8340c9129d.tar.gz
libvfio-user-93709c019624acc6b079bf2a70c18b8340c9129d.tar.bz2
github: switch workflows over to using meson
This switch the pull request and coverity workflows over to use Meson instead of cmake. Signed-off-by: Daniel P. Berrangé <berrange@redhat.com>
Diffstat (limited to 'Makefile')
-rw-r--r--Makefile24
1 files changed, 5 insertions, 19 deletions
diff --git a/Makefile b/Makefile
index afd9846..407b931 100644
--- a/Makefile
+++ b/Makefile
@@ -126,25 +126,11 @@ test: all pytest
endif
cd $(BUILD_DIR)/test; ctest --verbose
-pre-push: realclean
- $(RSTLINT) docs/vfio-user.rst
- $(FLAKE8) --extend-ignore=F405,F403,E128,E131,E127 $$(find . -name '*.py')
- make test WITH_ASAN=1 WITH_TRAN_PIPE=1
- make realclean
- make test CC=clang BUILD_TYPE=rel WITH_TRAN_PIPE=1
- make test CC=clang WITH_TRAN_PIPE=1
- make realclean
- make test CC=gcc BUILD_TYPE=rel WITH_TRAN_PIPE=1
- make test CC=gcc WITH_TRAN_PIPE=1
- make pytest-valgrind
- make install DESTDIR=tmp.install
-
-coverity: realclean
- curl -sS -L -o coverity.tar.gz -d "token=$$COVERITY_TOKEN&project=nutanix%2Flibvfio-user" https://scan.coverity.com/download/cxx/linux64
- tar xf coverity.tar.gz
- ./cov-analysis-linux64-*/bin/cov-build --dir cov-int make -j4 all
- tar czf coverity-results.tar.gz cov-int
- curl --form token=$$COVERITY_TOKEN --form email=$$COVERITY_EMAIL --form file=@coverity-results.tar.gz --form version="$(GIT_SHA)" https://scan.coverity.com/builds?project=nutanix%2Flibvfio-user
+pre-push:
+ .github/workflows/pull_request.sh
+
+coverity:
+ .github/workflows/coverity.sh
GCOVS=$(patsubst %.c,%.c.gcov, $(wildcard lib/*.c))