diff options
author | Nikolaus Rath <Nikolaus@rath.org> | 2023-02-20 19:46:16 +0000 |
---|---|---|
committer | Nikolaus Rath <Nikolaus@rath.org> | 2023-02-20 20:28:12 +0000 |
commit | 17e8b3e27304b9c57397c70077062ba5bb5e5dc1 (patch) | |
tree | 3a47d95d9fe4e64881aa8abf11a3b98d290c0b0c /test/ci-install.sh | |
parent | 2da03e389866835e29b78a4546c6f1f87aab8fe1 (diff) | |
download | libfuse-17e8b3e27304b9c57397c70077062ba5bb5e5dc1.tar.gz |
Migrate from Travis to Github actions
With current Ubuntu, Valgrind apparently does not like clang debug info, so do not run
valgrind with clang-compiled binaries.
Diffstat (limited to 'test/ci-install.sh')
-rwxr-xr-x | test/ci-install.sh | 10 |
1 files changed, 10 insertions, 0 deletions
diff --git a/test/ci-install.sh b/test/ci-install.sh new file mode 100755 index 0000000..924623b --- /dev/null +++ b/test/ci-install.sh @@ -0,0 +1,10 @@ +#!/bin/sh + +set -e + +sudo python3 -m pip install --upgrade pip +# Meson 0.45 requires Python 3.5 or newer +sudo python3 -m pip install pytest meson==0.50 +valgrind --version +ninja --version +meson --version |