1
0
Fork 0
mirror of https://gitlab.gnome.org/GNOME/calls.git synced 2024-06-27 22:29:29 +00:00
Purism-Calls/.gitlab-ci.yml

93 lines
1.9 KiB
YAML
Raw Normal View History

include:
- 'https://source.puri.sm/Librem5/librem5-ci/raw/master/librem5-pipeline-definitions.yml'
stages:
- build
- test
- package
- test-package
variables:
2020-05-12 09:36:49 +00:00
DEPS: build-essential git
WANT_BUILD_DEPS: "true"
2020-05-12 09:36:49 +00:00
IMAGE: debian:bullseye
before_script:
- export DEBIAN_FRONTEND=noninteractive
- apt-get -y update
- apt-get -y install $DEPS wget ca-certificates gnupg
- echo "deb http://ci.puri.sm/ bullseyeci main" > /etc/apt/sources.list.d/ci.list
- wget -O- https://ci.puri.sm/ci-repo.key | apt-key add -
- apt-get -y update
2020-05-12 09:36:49 +00:00
- apt-get -y build-dep .
- ulimit -c unlimited
.tags: &tags
tags:
- librem5
build:native:
<<: *tags
2020-05-12 09:36:49 +00:00
image: $IMAGE
stage: build
artifacts:
paths:
- _build
script:
- meson --werror . _build
- ninja -C _build
except:
variables:
- $PKG_ONLY == "1"
test:native:
<<: *tags
2020-05-12 09:36:49 +00:00
image: $IMAGE
stage: test
dependencies:
- build:native
script:
- export LC_ALL=C.UTF-8
- xvfb-run ninja -C _build test
except:
variables:
- $PKG_ONLY == "1"
check-po:
<<: *tags
image: $IMAGE
stage: test
dependencies:
- build:native
before_script:
- apt-get -y update
- apt-get -y install intltool
script:
# barf on untranslated C files. Seems intltool
# can't be told to exit with non-zero exit status
# in this case
- cd po/
- intltool-update -m 2>&1 | grep -qs '/.*\.c' && { intltool-update -m; exit 1; } || exit 0
except:
variables:
- $PKG_ONLY == "1"
package:deb-debian-buster:
extends: .l5-build-debian-package
package:deb-debian-buster:arm64:
tags:
- librem5:arm64
extends: .l5-build-debian-package
autopkgtest-debian-buster-package:
dependencies:
- package:deb-debian-buster
extends: .l5-autopkgtest-debian-package
lintian-debian-buster-package:
dependencies:
- package:deb-debian-buster
extends: .l5-lintian-debian-package