Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Support
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in / Register
Toggle navigation
C
cython
Project overview
Project overview
Details
Activity
Releases
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Labels
Merge Requests
0
Merge Requests
0
Analytics
Analytics
Repository
Value Stream
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Commits
Open sidebar
nexedi
cython
Commits
c9d22dab
Commit
c9d22dab
authored
Aug 10, 2018
by
Stefan Behnel
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Always install gcc-8 on travis, but exclude g++-8 for the C compilation tests.
parent
058eb124
Changes
1
Show whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
5 additions
and
7 deletions
+5
-7
.travis.yml
.travis.yml
+5
-7
No files found.
.travis.yml
View file @
c9d22dab
...
...
@@ -112,13 +112,11 @@ before_install:
-
|
if [[ "$TRAVIS_OS_NAME" == "linux" ]]; then
sudo apt-get update
if [ "$BACKEND" = c ]; then
sudo apt-get install gcc-8
sudo apt-get install gcc-8 $(if [ "$BACKEND" = cpp ]; then echo -n "g++-8" )
sudo update-alternatives --install /usr/bin/gcc gcc /usr/bin/gcc-8 60
sudo update-alternatives --set gcc /usr/bin/gcc-8
export CC=gcc-8
else
sudo apt-get install g++-8
if [ "$BACKEND" = cpp ]; then
sudo update-alternatives --install /usr/bin/g++ g++ /usr/bin/g++-8 60
sudo update-alternatives --set g++ /usr/bin/g++-8
export CXX=g++-8
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment