summaryrefslogtreecommitdiffstats
path: root/.travis.yml
diff options
context:
space:
mode:
authorDaniel Baumann <daniel.baumann@progress-linux.org>2024-04-27 17:44:12 +0000
committerDaniel Baumann <daniel.baumann@progress-linux.org>2024-04-27 17:44:12 +0000
commit1be69c2c660b70ac2f4de2a5326e27e3e60eb82d (patch)
treebb299ab6f411f4fccd735907035de710e4ec6abc /.travis.yml
parentInitial commit. (diff)
downloadcryptsetup-upstream/2%2.3.7.tar.xz
cryptsetup-upstream/2%2.3.7.zip
Adding upstream version 2:2.3.7.upstream/2%2.3.7upstream
Signed-off-by: Daniel Baumann <daniel.baumann@progress-linux.org>
Diffstat (limited to '.travis.yml')
-rw-r--r--.travis.yml42
1 files changed, 42 insertions, 0 deletions
diff --git a/.travis.yml b/.travis.yml
new file mode 100644
index 0000000..0bb8c39
--- /dev/null
+++ b/.travis.yml
@@ -0,0 +1,42 @@
+language: c
+
+sudo: required
+os: linux
+dist: focal
+group: edge
+
+compiler:
+ - gcc
+
+env:
+ # MAKE_CHECK="gcrypt"
+ - MAKE_CHECK="openssl"
+ # MAKE_CHECK="kernel"
+
+branches:
+ only:
+ - master
+ - wip-luks2
+ - v2.3.x
+
+before_install:
+ - uname -a
+ - $CC --version
+ - which $CC
+ # workaround clang not system wide, fail on sudo make install
+ - export CC=`which $CC`
+ # workaround travis-ci issue #5301
+ - unset PYTHON_CFLAGS
+
+install:
+ - source ./.travis-functions.sh
+ - travis_install_script
+
+before_script:
+ - travis_before_script
+
+script:
+ - travis_script
+
+after_script:
+ - travis_after_script