From ffe368bbcb7df80a83742e492036a648dbe2bf08 Mon Sep 17 00:00:00 2001 From: Vladyslav Usenko Date: Tue, 28 Apr 2020 12:43:52 +0200 Subject: [PATCH] Added focal to CI --- .gitlab-ci.yml | 33 ++++++++++++++++++++++++++++++++- 1 file changed, 32 insertions(+), 1 deletion(-) diff --git a/.gitlab-ci.yml b/.gitlab-ci.yml index 73c309c..7ef3556 100644 --- a/.gitlab-ci.yml +++ b/.gitlab-ci.yml @@ -164,6 +164,20 @@ xenial-release-compile: - deb_xenial/*.deb expire_in: 1 week +focal-release-compile: + <<: *prepare_docker_definition + <<: *compile_test_package_definition + image: vladyslavusenko/b_image_focal:latest + only: + - master + variables: + CXX_MARCH: 'sandybridge' + DEB_DIR: deb_focal + artifacts: + paths: + - deb_focal/*.deb + expire_in: 1 week + bionic-debug-compile: <<: *prepare_docker_definition <<: *compile_test_package_definition @@ -225,6 +239,15 @@ xenial-test: DEB_DIR: deb_xenial GIT_STRATEGY: none +focal-test: + <<: *test_deb_definition + image: vladyslavusenko/b_image_focal:latest + only: + - master + variables: + DEB_DIR: deb_focal + GIT_STRATEGY: none + # evaluate on EuRoC sequences eval_euroc_master: <<: *eval_euroc_definition @@ -313,6 +336,7 @@ deploy: script: - scp $SCP_FLAGS deb_xenial/*.deb $REPOSITORY_URL/xenial/ - scp $SCP_FLAGS deb_bionic/*.deb $REPOSITORY_URL/bionic/ + - scp $SCP_FLAGS deb_focal/*.deb $REPOSITORY_URL/focal/ .docker_build_template: &docker_build_definition @@ -383,4 +407,11 @@ repository-check-xenial: <<: *repository_check_definition variables: GIT_STRATEGY: none - REPO_NAME: xenial \ No newline at end of file + REPO_NAME: xenial + +repository-check-bionic: + image: ubuntu:20.04 + <<: *repository_check_definition + variables: + GIT_STRATEGY: none + REPO_NAME: focal \ No newline at end of file