Skip to content
Snippets Groups Projects
Commit 75db5527 authored by Simon McVittie's avatar Simon McVittie
Browse files

Move Gitlab-CI setup into debian directory

parent c0f34032
No related branches found
Tags pressure-vessel-v0.20190819.0
No related merge requests found
include:
- project: 'steam/steam-ci-pipeline'
file: '/steam-gitlab-ci-common.yml'
- project: 'steam/steam-ci-pipeline'
file: '/steam-gitlab-ci-pipeline.yml'
variables:
BUILD_IMAGE: docker.internal.steamos.cloud/steamrt/sdk:scout-latest
STEAM_CI_USE_BINARIES_FROM: autopkgtest
STEAM_CI_DEPENDENCIES: >-
debhelper
libglib2.0-dev
libxau-dev
meson
python3
python3.5
zlib1g
DEBIAN_FRONTEND: noninteractive
SCOUT_DOCKER_REGISTRY: docker.steamos.cloud
SCOUT_DOCKER_IMAGE: steamrt/sdk:scout
SCOUT_APT_SOURCES_FILE: ''
DEVEL_DOCKER_REGISTRY: docker.steamos.cloud
DEVEL_DOCKER_IMAGE: steamos/package-builder:buster
build:
variables:
BUILD_IMAGE: docker.internal.steamos.cloud/steamos/package-builder:buster
build:devel:
stage: build
image: "${DEVEL_DOCKER_REGISTRY}/${DEVEL_DOCKER_IMAGE}"
script:
- |
set -eux
apt-get -y --no-install-recommends install \
libglib2.0-dev \
libxau-dev \
meson \
${NULL+}
meson _build
ninja -C _build
ninja -C _build install
meson test --verbose -C _build
build:scout:
stage: build
image: "${SCOUT_DOCKER_REGISTRY}/${SCOUT_DOCKER_IMAGE}"
script:
- |
set -eux
if [ -n "${SCOUT_APT_SOURCES_FILE}" ]; then
cp "${SCOUT_APT_SOURCES_FILE}" /etc/apt/sources.list
apt-get -y update
fi
apt-get -y --no-install-recommends install \
bubblewrap \
libcapsule0 \
libcapsule-tools-relocatable:amd64 \
libcapsule-tools-relocatable:i386 \
libglib2.0-dev \
libxau-dev \
meson \
${NULL+}
meson \
--prefix="$(pwd)/_build/prefix" \
-Dpython=python3.5 \
-Dsrcdir=src \
_build
ninja -C _build
meson test --verbose -C _build
ninja -C _build install
rm -fr _build/relocatable-install
_build/prefix/bin/pressure-vessel-build-relocatable-install \
--output _build/relocatable-install \
--archive "$(pwd)/_build" \
${NULL+}
prove -v ./tests/relocatable-install.py :: \
"$(pwd)/_build/relocatable-install"
# Artifacts are currently disabled because uploading them to the
# coordinator results in HTTP 413 Request Entity Too Large.
# artifacts:
# paths:
# - _build/pressure-vessel-*-bin.tar.gz
# - _build/pressure-vessel-*-bin+src.tar.gz
......@@ -8,7 +8,86 @@ include:
variables:
BUILD_IMAGE: docker.internal.steamos.cloud/steamrt/sdk:scout-latest
STEAM_CI_USE_BINARIES_FROM: autopkgtest
STEAM_CI_DEPENDENCIES: >-
debhelper
libglib2.0-dev
libxau-dev
meson
python3
python3.5
zlib1g
DEBIAN_FRONTEND: noninteractive
SCOUT_DOCKER_REGISTRY: docker.steamos.cloud
SCOUT_DOCKER_IMAGE: steamrt/sdk:scout
SCOUT_APT_SOURCES_FILE: ''
DEVEL_DOCKER_REGISTRY: docker.steamos.cloud
DEVEL_DOCKER_IMAGE: steamos/package-builder:buster
build:
variables:
BUILD_IMAGE: docker.internal.steamos.cloud/steamos/package-builder:buster
build:devel:
stage: build
image: "${DEVEL_DOCKER_REGISTRY}/${DEVEL_DOCKER_IMAGE}"
script:
- |
set -eux
apt-get -y --no-install-recommends install \
libglib2.0-dev \
libxau-dev \
meson \
${NULL+}
meson _build
ninja -C _build
ninja -C _build install
meson test --verbose -C _build
build:scout:
stage: build
image: "${SCOUT_DOCKER_REGISTRY}/${SCOUT_DOCKER_IMAGE}"
script:
- |
set -eux
if [ -n "${SCOUT_APT_SOURCES_FILE}" ]; then
cp "${SCOUT_APT_SOURCES_FILE}" /etc/apt/sources.list
apt-get -y update
fi
apt-get -y --no-install-recommends install \
bubblewrap \
libcapsule0 \
libcapsule-tools-relocatable:amd64 \
libcapsule-tools-relocatable:i386 \
libglib2.0-dev \
libxau-dev \
meson \
${NULL+}
meson \
--prefix="$(pwd)/_build/prefix" \
-Dpython=python3.5 \
-Dsrcdir=src \
_build
ninja -C _build
meson test --verbose -C _build
ninja -C _build install
rm -fr _build/relocatable-install
_build/prefix/bin/pressure-vessel-build-relocatable-install \
--output _build/relocatable-install \
--archive "$(pwd)/_build" \
${NULL+}
prove -v ./tests/relocatable-install.py :: \
"$(pwd)/_build/relocatable-install"
# Artifacts are currently disabled because uploading them to the
# coordinator results in HTTP 413 Request Entity Too Large.
# artifacts:
# paths:
# - _build/pressure-vessel-*-bin.tar.gz
# - _build/pressure-vessel-*-bin+src.tar.gz
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment