Skip to content
GitLab
Projects
Groups
Snippets
Help
Loading...
Help
What's new
10
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in / Register
Toggle navigation
Open sidebar
OTRv4
little-ed448-Goldilocks
Commits
66268497
Unverified
Commit
66268497
authored
Jan 21, 2018
by
Sofia Celi
⛸
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Use only one machine for valgrind checks on ci
parent
e6e10bd3
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
27 additions
and
2 deletions
+27
-2
.travis.yml
.travis.yml
+27
-2
No files found.
.travis.yml
View file @
66268497
...
...
@@ -6,23 +6,48 @@ matrix:
-
os
:
linux
dist
:
trusty
compiler
:
clang
env
:
T=normal
-
os
:
linux
dist
:
trusty
compiler
:
gcc
env
:
T=normal
-
os
:
linux
dist
:
precise
compiler
:
clang
env
:
T=normal
-
os
:
linux
dist
:
precise
compiler
:
gcc
env
:
T=normal
-
os
:
linux
dist
:
precise
compiler
:
gcc
env
:
T=valgrind-check
allow_failures
:
-
os
:
linux
dist
:
precise
compiler
:
gcc
env
:
T=valgrind-check
sudo
:
required
before_install
:
-
sudo apt-get update --quiet --assume-yes
-
sudo apt-get install splint --quiet --assume-yes
-
sudo
apt-get install valgrind --quiet --assume-yes
-
if [[ "$T" = "valgrind-check" ]]; then
apt-get install valgrind --quiet --assume-yes
; fi
before_script
:
./autogen.sh
script
:
-
./autogen.sh && ./configure --disable-shared && make ci
-
|
if [ "$T" = "normal" ]; then
./autogen.sh
./configure --disable-shared
make
make test
fi
-
|
if [ "$T" = "valgrind-check" ]; then
./autogen.sh
./configure --disable-shared
make ci
fi
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