1
0
Fork 0
mirror of https://github.com/OpenMW/openmw.git synced 2025-01-31 03:45:34 +00:00

all the yes

This commit is contained in:
psi29a 2021-12-07 14:11:28 +00:00
parent 3eac2db076
commit ef57c0dd65

View file

@ -40,7 +40,7 @@ Clang_Tidy:
rules:
- if: '$CI_PIPELINE_SOURCE == "schedule"'
before_script:
- apt-get update; apt-get install software-properties-common -y; add-apt-repository -y ppa:openmw/openmw
- apt-get update; apt-get -y install software-properties-common; add-apt-repository -y ppa:openmw/openmw
- CI/install_debian_deps.sh gcc openmw-deps openmw-deps-dynamic clang-tidy clang
script:
- CI/before_script.linux.sh
@ -61,7 +61,7 @@ Coverity:
rules:
- if: $CI_PIPELINE_SOURCE == "schedule"
before_script:
- apt-get update; apt-get install software-properties-common -y; add-apt-repository -y ppa:openmw/openmw
- apt-get update; apt-get -y install software-properties-common; add-apt-repository -y ppa:openmw/openmw
- CI/install_debian_deps.sh gcc openmw-deps openmw-deps-dynamic coverity
- curl -o /tmp/cov-analysis-linux64.tgz https://scan.coverity.com/download/linux64 --form project=$COVERITY_SCAN_PROJECT_NAME --form token=$COVERITY_SCAN_TOKEN
- tar xfz /tmp/cov-analysis-linux64.tgz
@ -88,7 +88,7 @@ Ubuntu_GCC:
cache:
key: Ubuntu_GCC.v2
before_script:
- apt-get update; apt-get install software-properties-common -y; add-apt-repository -y ppa:openmw/openmw
- apt-get update; apt-get -y install software-properties-common; add-apt-repository -y ppa:openmw/openmw
- CI/install_debian_deps.sh gcc openmw-deps openmw-deps-dynamic
variables:
CC: gcc
@ -129,7 +129,7 @@ Ubuntu_GCC_Static_Deps:
- ccache/
- build/extern/fetched/
before_script:
- apt-get update; apt-get install software-properties-common -y; add-apt-repository -y ppa:openmw/openmw
- apt-get update; apt-get-y install software-properties-common; add-apt-repository -y ppa:openmw/openmw
- CI/install_debian_deps.sh gcc openmw-deps openmw-deps-static
variables:
CI_OPENMW_USE_STATIC_DEPS: 1
@ -149,7 +149,7 @@ Ubuntu_GCC_Static_Deps_tests:
Ubuntu_Clang:
extends: .Ubuntu
before_script:
- apt-get update; apt-get install software-properties-common; add-apt-repository -y ppa:openmw/openmw
- apt-get update; apt-get -y install software-properties-common; add-apt-repository -y ppa:openmw/openmw
- CI/install_debian_deps.sh clang openmw-deps openmw-deps-dynamic
cache:
key: Ubuntu_Clang.v2