Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

ci,azure-pipelines: wrap all Ubuntu builds in official docker images #638

Merged
merged 1 commit into from
Dec 21, 2020
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 4 additions & 0 deletions CI/travis/before_install_linux
Original file line number Diff line number Diff line change
Expand Up @@ -107,6 +107,10 @@ handle_default() {
fi
}

handle_ubuntu() {
handle_default
}

handle_debian() {
handle_default
}
Expand Down
6 changes: 6 additions & 0 deletions CI/travis/make_linux
Original file line number Diff line number Diff line change
Expand Up @@ -4,6 +4,8 @@ if [ "x${COVERITY_SCAN_PROJECT_NAME}" != "x" ] ; then exit 0; fi

. CI/travis/lib.sh

INSIDE_DOCKER_TRAVIS_CI_ENV="$INSIDE_DOCKER_TRAVIS_CI_ENV CHECK_AGAINST_KERNEL_HEADER"

handle_default() {
echo "### making build dir"
mkdir -p build
Expand Down Expand Up @@ -103,6 +105,10 @@ handle_centos() {
cd ..
}

handle_ubuntu() {
handle_default
}

handle_debian() {
handle_default
}
Expand Down
12 changes: 9 additions & 3 deletions azure-pipelines.yml
Original file line number Diff line number Diff line change
Expand Up @@ -24,13 +24,19 @@ jobs:
OS_VERSION: centos8
artifactName: 'Linux-CentOS-8-x86_64'
ubuntu_16_04_x86_64:
imageName: 'ubuntu-16.04'
imageName: 'ubuntu-latest'
OS_TYPE: 'ubuntu_docker'
OS_VERSION: xenial
artifactName: 'Linux-Ubuntu-16.04-x86_64'
ubuntu_18_04_x86_64:
imageName: 'ubuntu-18.04'
imageName: 'ubuntu-latest'
OS_TYPE: 'ubuntu_docker'
OS_VERSION: bionic
artifactName: 'Linux-Ubuntu-18.04-x86_64'
ubuntu_20_04_x86_64:
imageName: 'ubuntu-20.04'
imageName: 'ubuntu-latest'
OS_TYPE: 'ubuntu_docker'
OS_VERSION: focal
artifactName: 'Linux-Ubuntu-20.04-x86_64'
CHECK_AGAINST_KERNEL_HEADER: 1
debian_buster_arm32v7:
Expand Down