summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorpsi29a <psi29a@gmail.com>2022-10-11 07:34:05 +0000
committerpsi29a <psi29a@gmail.com>2022-10-11 07:34:05 +0000
commitdce1cb528b84ede2dcdce6477537bf0e153d18c5 (patch)
tree01f371324c3a1c16fec7d7c934a6b762a3b498a9
parentdf8bd57a9e89d893559d771b840ea8eb757e079d (diff)
Update .gitlab-ci.ymlfocus_on_focal
-rw-r--r--.gitlab-ci.yml18
1 files changed, 17 insertions, 1 deletions
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