Skip to content
Snippets Groups Projects
Commit 1c9ebbd6 authored by Fabian Lennartz's avatar Fabian Lennartz
Browse files

Remove gcc5 and 6 from standard pipeline

#487
parent c5ac0b06
No related branches found
No related tags found
1 merge request!153feature/#487_Use_only_the_newest_compilers_for_standard_pipeline into master
...@@ -367,41 +367,41 @@ test:linux_nightly:clang: ...@@ -367,41 +367,41 @@ test:linux_nightly:clang:
# common builds # common builds
conan:linux:gcc5.3.1: # conan:linux:gcc5.3.1:
stage: conan # stage: conan
except: # except:
- schedules # - schedules
tags: # tags:
- gcc5.3.1 # - gcc5.3.1
- opengl # - opengl
script: # script:
- mkdir build # - mkdir build
- cd build # - cd build
- export CC=gcc # - export CC=gcc
- export CXX=g++ # - export CXX=g++
- conan install .. --build=missing -s compiler="gcc" -s compiler.version="5.3" -s compiler.libcxx="libstdc++11" -s build_type=Release # - conan install .. --build=missing -s compiler="gcc" -s compiler.version="5.3" -s compiler.libcxx="libstdc++11" -s build_type=Release
artifacts: # artifacts:
paths: # paths:
- build # - build
expire_in: 1 week # expire_in: 1 week
conan:linux:gcc6.3.1: # conan:linux:gcc6.3.1:
stage: conan # stage: conan
except: # except:
- schedules # - schedules
tags: # tags:
- gcc6.3.1 # - gcc6.3.1
- opengl # - opengl
script: # script:
- mkdir build # - mkdir build
- cd build # - cd build
- export CC=gcc # - export CC=gcc
- export CXX=g++ # - export CXX=g++
- conan install .. --build=missing -s compiler="gcc" -s compiler.version="6.3" -s compiler.libcxx="libstdc++11" -s build_type=Release # - conan install .. --build=missing -s compiler="gcc" -s compiler.version="6.3" -s compiler.libcxx="libstdc++11" -s build_type=Release
artifacts: # artifacts:
paths: # paths:
- build # - build
expire_in: 1 week # expire_in: 1 week
conan:linux:gcc7.3.1: conan:linux:gcc7.3.1:
stage: conan stage: conan
...@@ -421,41 +421,41 @@ conan:linux:gcc7.3.1: ...@@ -421,41 +421,41 @@ conan:linux:gcc7.3.1:
- build - build
expire_in: 1 week expire_in: 1 week
cmake:linux:gcc5.3.1: # cmake:linux:gcc5.3.1:
stage: cmake # stage: cmake
except: # except:
- schedules # - schedules
tags: # tags:
- gcc5.3.1 # - gcc5.3.1
- opengl # - opengl
dependencies: # dependencies:
- conan:linux:gcc5.3.1 # - conan:linux:gcc5.3.1
script: # script:
- cd build # - cd build
- cmake .. -DIS_BUILD_SERVER:BOOL=TRUE -DCMAKE_BUILD_TYPE=Release # - cmake .. -DIS_BUILD_SERVER:BOOL=TRUE -DCMAKE_BUILD_TYPE=Release
artifacts: # artifacts:
untracked: true # untracked: true
paths: # paths:
- build # - build
expire_in: 1 week # expire_in: 1 week
cmake:linux:gcc6.3.1: # cmake:linux:gcc6.3.1:
stage: cmake # stage: cmake
except: # except:
- schedules # - schedules
tags: # tags:
- gcc6.3.1 # - gcc6.3.1
- opengl # - opengl
dependencies: # dependencies:
- conan:linux:gcc6.3.1 # - conan:linux:gcc6.3.1
script: # script:
- cd build # - cd build
- cmake .. -DIS_BUILD_SERVER:BOOL=TRUE -DCMAKE_BUILD_TYPE=Release # - cmake .. -DIS_BUILD_SERVER:BOOL=TRUE -DCMAKE_BUILD_TYPE=Release
artifacts: # artifacts:
untracked: true # untracked: true
paths: # paths:
- build # - build
expire_in: 1 week # expire_in: 1 week
cmake:linux:gcc7.3.1: cmake:linux:gcc7.3.1:
stage: cmake stage: cmake
...@@ -475,45 +475,45 @@ cmake:linux:gcc7.3.1: ...@@ -475,45 +475,45 @@ cmake:linux:gcc7.3.1:
- build - build
expire_in: 1 week expire_in: 1 week
build:linux:gcc5.3.1: # build:linux:gcc5.3.1:
stage: build # stage: build
except: # except:
- schedules # - schedules
tags: # tags:
- gcc5.3.1 # - gcc5.3.1
- opengl # - opengl
dependencies: # dependencies:
- cmake:linux:gcc5.3.1 # - cmake:linux:gcc5.3.1
script: # script:
- cd build # - cd build
- make Cpplint-Test-Suite # - make Cpplint-Test-Suite
- make Cppcheck-Test-Suite # - make Cppcheck-Test-Suite
- make -j8 # - make -j8
artifacts: # artifacts:
paths: # paths:
- build # - build
expire_in: 1 week # expire_in: 1 week
allow_failure: true # allow_failure: true
build:linux:gcc6.3.1: # build:linux:gcc6.3.1:
stage: build # stage: build
except: # except:
- schedules # - schedules
tags: # tags:
- gcc6.3.1 # - gcc6.3.1
- opengl # - opengl
dependencies: # dependencies:
- cmake:linux:gcc6.3.1 # - cmake:linux:gcc6.3.1
script: # script:
- cd build # - cd build
- make Cpplint-Test-Suite # - make Cpplint-Test-Suite
- make Cppcheck-Test-Suite # - make Cppcheck-Test-Suite
- make -j8 # - make -j8
artifacts: # artifacts:
paths: # paths:
- build # - build
expire_in: 1 week # expire_in: 1 week
allow_failure: true # allow_failure: true
build:linux:gcc7.3.1: build:linux:gcc7.3.1:
stage: build stage: build
...@@ -536,31 +536,31 @@ build:linux:gcc7.3.1: ...@@ -536,31 +536,31 @@ build:linux:gcc7.3.1:
expire_in: 1 week expire_in: 1 week
allow_failure: true allow_failure: true
test:linux:gcc5.3.1: # test:linux:gcc5.3.1:
stage: test # stage: test
except: # except:
- schedules # - schedules
tags: # tags:
- gcc5.3.1 # - gcc5.3.1
- opengl # - opengl
dependencies: # dependencies:
- build:linux:gcc5.3.1 # - build:linux:gcc5.3.1
script: # script:
- cd build # - cd build
- make Unit-Test-Suite # - make Unit-Test-Suite
test:linux:gcc6.3.1: # test:linux:gcc6.3.1:
stage: test # stage: test
except: # except:
- schedules # - schedules
tags: # tags:
- gcc6.3.1 # - gcc6.3.1
- opengl # - opengl
dependencies: # dependencies:
- build:linux:gcc6.3.1 # - build:linux:gcc6.3.1
script: # script:
- cd build # - cd build
- make Unit-Test-Suite # - make Unit-Test-Suite
test:linux:gcc7.3.1: test:linux:gcc7.3.1:
stage: test stage: test
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment