Skip to content
GitLab
Explore
Sign in
Primary navigation
Search or go to…
Project
Project_Phoenix
Manage
Activity
Members
Labels
Plan
Wiki
Code
Merge requests
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Snippets
Deploy
Releases
Package registry
Model registry
Operate
Terraform modules
Analyze
Value stream analytics
Contributor analytics
Repository analytics
Model experiments
Help
Help
Support
GitLab documentation
Compare GitLab plans
GitLab community forum
Contribute to GitLab
Provide feedback
Terms and privacy
Keyboard shortcuts
?
Snippets
Groups
Projects
Show more breadcrumbs
LuFG VR VIS
VR-Group
Project_Phoenix
Commits
1c9ebbd6
Commit
1c9ebbd6
authored
Jul 13, 2018
by
Fabian Lennartz
Browse files
Options
Downloads
Patches
Plain Diff
Remove gcc5 and 6 from standard pipeline
#487
parent
c5ac0b06
No related branches found
No related tags found
1 merge request
!153
feature/#487_Use_only_the_newest_compilers_for_standard_pipeline into master
Changes
1
Show whitespace changes
Inline
Side-by-side
Showing
1 changed file
.gitlab-ci.yml
+133
-133
133 additions, 133 deletions
.gitlab-ci.yml
with
133 additions
and
133 deletions
.gitlab-ci.yml
+
133
−
133
View file @
1c9ebbd6
...
@@ -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
...
...
This diff is collapsed.
Click to expand it.
Preview
0%
Loading
Try again
or
attach a new file
.
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Save comment
Cancel
Please
register
or
sign in
to comment