aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorMike Gabriel <mike.gabriel@das-netzwerkteam.de>2021-04-20 00:10:33 +0200
committerMike Gabriel <mike.gabriel@das-netzwerkteam.de>2021-04-20 08:09:10 +0200
commit5424403d78bac96ff1a8aa57eefdf9b25f5b7569 (patch)
tree4b1d0ade2a69db8e2efd77042ae9a39f8b420ef8
parent5cd5b0c2dfd155fce79333eea4349b4f037a0539 (diff)
downloadlibayatana-indicator-5424403d78bac96ff1a8aa57eefdf9b25f5b7569.tar.gz
libayatana-indicator-5424403d78bac96ff1a8aa57eefdf9b25f5b7569.tar.bz2
libayatana-indicator-5424403d78bac96ff1a8aa57eefdf9b25f5b7569.zip
TRAVIS: Initial attempt to get TRAVIS CI working for this project.
-rw-r--r--.build.yml103
-rw-r--r--.travis.yml17
2 files changed, 115 insertions, 5 deletions
diff --git a/.build.yml b/.build.yml
new file mode 100644
index 0000000..4c02846
--- /dev/null
+++ b/.build.yml
@@ -0,0 +1,103 @@
+##########################################################
+# THE FOLLOWING LINES IS USED BY docker-build
+##########################################################
+requires:
+ archlinux:
+ - autoconf-archive
+ - clang
+ - gcc
+ - git
+ - make
+ - startup-notification
+ - which
+ - pacman
+ - gtk3
+ - glib2
+ - ayatana-ido
+ - mate-common
+
+ debian:
+ # Useful URL: https://salsa.debian.org/debian-ayatana-team/libayatana-indicator
+ - autopoint
+ - clang
+ - clang-tools
+ - cppcheck
+ - git
+ - at-spi2-core
+ - libtool
+ - intltool
+ - mate-common
+ - gtk-doc-tools
+ - dbus-test-runner
+ - xvfb
+ - libglib2.0-dev
+ - libgtk2.0-dev
+ - libgtk-3-dev
+ - libayatana-ido3-dev
+ - systemd
+
+ ubuntu:
+ - autopoint
+ - clang
+ - clang-tools
+ - git
+ - at-spi2-core
+ - libtool
+ - intltool
+ - mate-common
+ - gtk-doc-tools
+ - dbus-test-runner
+ - xvfb
+ - libglib2.0-dev
+ - libgtk2.0-dev
+ - libgtk-3-dev
+ - libayatana-ido3-dev
+ - systemd
+
+variables:
+ - 'CHECKERS="
+ -enable-checker deadcode.DeadStores
+ -enable-checker alpha.deadcode.UnreachableCode
+ -enable-checker alpha.core.CastSize
+ -enable-checker alpha.core.CastToStruct
+ -enable-checker alpha.core.IdenticalExpr
+ -enable-checker alpha.core.SizeofPtr
+ -enable-checker alpha.security.ArrayBoundV2
+ -enable-checker alpha.security.MallocOverflow
+ -enable-checker alpha.security.ReturnPtrRange
+ -enable-checker alpha.unix.SimpleStream
+ -enable-checker alpha.unix.cstring.BufferOverlap
+ -enable-checker alpha.unix.cstring.NotNullTerminated
+ -enable-checker alpha.unix.cstring.OutOfBounds
+ -enable-checker alpha.core.FixedAddr
+ -enable-checker security.insecureAPI.strcpy"'
+
+build_scripts:
+ - if [ ${DISTRO_NAME} == "debian" ];then
+ - export CFLAGS+=" -Wsign-compare -Wunused-parameter"
+ - cppcheck --enable=warning,style,performance,portability,information,missingInclude .
+ - fi
+
+ - NOCONFIGURE=1 ./autogen.sh
+ - scan-build $CHECKERS ./configure --prefix=/usr --enable-gtk-doc --enable-compile-warnings=maximum
+ - if [ $CPU_COUNT -gt 1 ]; then
+ - if [ ${DISTRO_NAME} == "debian" ];then
+ - scan-build $CHECKERS --keep-cc --use-cc=clang --use-c++=clang++ -o html-report make -j $CPU_COUNT
+ - make clean
+ - fi
+ - scan-build $CHECKERS --keep-cc -o html-report make -j $CPU_COUNT
+ - else
+ - if [ ${DISTRO_NAME} == "debian" ];then
+ - scan-build $CHECKERS --keep-cc --use-cc=clang --use-c++=clang++ -o html-report make
+ - make clean
+ - fi
+ - scan-build $CHECKERS --keep-cc -o html-report make
+ - fi
+
+after_scripts:
+ - if [ ${BUILD_TYPE} == "scripts" ];then
+ - if [ ${DISTRO_NAME} == "debian" ];then
+ - make check
+ - fi
+ - make distcheck
+ - fi
diff --git a/.travis.yml b/.travis.yml
index 611869f..302fd18 100644
--- a/.travis.yml
+++ b/.travis.yml
@@ -2,6 +2,11 @@
dist: bionic
language: shell
os: linux
+
+arch:
+ - amd64
+ - ppc64le
+
services:
- docker
@@ -12,11 +17,9 @@ addons:
- python3-setuptools
before_install:
- # let's use the MATE project's docker build scripts...
+ # let's use the MATE project's docker build script...
- curl -Ls -o docker-build https://github.com/mate-desktop/mate-dev-scripts/raw/master/travis/docker-build
- - curl -Ls -o gen-index https://github.com/mate-desktop/mate-dev-scripts/raw/master/travis/gen-index.sh
- - sed -i gen-index -e "s/mate-desktop/ayatana-indicators/g"
- - chmod +x docker-build gen-index
+ - chmod +x docker-build
install:
- pip3 install PyGithub
@@ -28,5 +31,9 @@ script:
env:
- DISTRO="archlinux:latest"
- DISTRO="debian:testing"
-# - DISTRO="fedora:latest"
- DISTRO="ubuntu:rolling"
+
+jobs:
+ exclude:
+ - env: DISTRO="archlinux:latest"
+ arch: ppc64le