You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
25 lines
404 B
25 lines
404 B
include:
|
|
- '.gitlab-ci-files/common-prepare.yml'
|
|
|
|
stages:
|
|
- build
|
|
|
|
|
|
# CentOS/RHEL
|
|
|
|
centos8:build:
|
|
extends: .make_in_docker
|
|
stage: build
|
|
variables:
|
|
CI_MAKE_TARGET: libpepadapter
|
|
CI_DISTRO_TARGET: centos8
|
|
|
|
# Debian
|
|
|
|
debian10:build:
|
|
extends: .make_in_docker
|
|
stage: build
|
|
variables:
|
|
CI_MAKE_TARGET: libpepadapter
|
|
CI_DISTRO_TARGET: debian10
|
|
DEBIAN_FRONTEND: noninteractive
|
|
|