From dce1cb528b84ede2dcdce6477537bf0e153d18c5 Mon Sep 17 00:00:00 2001 From: psi29a Date: Tue, 11 Oct 2022 07:34:05 +0000 Subject: [PATCH] Update .gitlab-ci.yml --- .gitlab-ci.yml | 18 +++++++++++++++++- 1 file changed, 17 insertions(+), 1 deletion(-) diff --git a/.gitlab-ci.yml b/.gitlab-ci.yml index 6df47b13a4..18a1c6759d 100644 --- a/.gitlab-ci.yml +++ b/.gitlab-ci.yml @@ -119,7 +119,23 @@ Ubuntu_GCC: CCACHE_SIZE: 4G # When CCache doesn't exist (e.g. first build on a fork), build takes more than 1h, which is the default for forks. timeout: 2h - + +Ubuntu_GCC_Focal: + extends: .Ubuntu + image: ubuntu:20.04 + cache: + key: Ubuntu_GCC.ubuntu_20.04.v1 + before_script: + - CI/install_debian_deps.sh gcc openmw-deps openmw-deps-dynamic + - add-apt-repository -y ppa:ubuntu-toolchain-r/test + - apt-get -qq -o dir::cache::archives="apt-cache" install -y --no-install-recommends gcc-11 g++-11 + variables: + CC: gcc-11 + CXX: g++-11 + CCACHE_SIZE: 4G + # When CCache doesn't exist (e.g. first build on a fork), build takes more than 1h, which is the default for forks. + timeout: 2h + Clang_Format: extends: .Ubuntu_Image stage: checks