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
feb8f3e3
Unverified
Commit
feb8f3e3
authored
Jan 21, 2018
by
Sofia Celi
⛸
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Add different machines and memcheck to travis
parent
008fcea5
Changes
2
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
24 additions
and
2 deletions
+24
-2
.travis.yml
.travis.yml
+20
-1
Makefile.am
Makefile.am
+4
-1
No files found.
.travis.yml
View file @
feb8f3e3
language
:
c
matrix
:
fast_finish
:
true
include
:
-
os
:
linux
dist
:
trusty
compiler
:
clang
-
os
:
linux
dist
:
trusty
compiler
:
gcc
-
os
:
linux
dist
:
precise
compiler
:
clang
-
os
:
linux
dist
:
precise
compiler
:
gcc
sudo
:
required
before_install
:
...
...
@@ -8,4 +24,7 @@ before_install:
-
sudo apt-get install valgrind --quiet --assume-yes
before_script
:
./autogen.sh
script
:
./configure && make && make test
script
:
-
./autogen.sh && ./configure --disable-shared
-
if [[ $(lsb_release -c -s) == "precise" ]]; then make ci; fi
-
if [[ $(lsb_release -c -s) == "trusty" ]]; then make ci; fi
Makefile.am
View file @
feb8f3e3
...
...
@@ -4,6 +4,9 @@ SUBDIRS = src test pkgconfig
ACLOCAL_AMFLAGS
=
-I
m4
.PHONY
:
gen_code gen_code_static test_ct todo lib sage sagetest all clean
ci
:
test mem-check
all-lib
:
$(MAKE)
all
-f
$(top_srcdir)
/Makefile.original
...
...
@@ -42,4 +45,4 @@ microbench: check
# NB: you must compile with XCFLAGS=-DNDEBUG or you will get lots of extra warnings due to assert(stuff).
mem-check
:
check
valgrind
$(top_srcdir)
/test/test
_ct
valgrind
$(top_srcdir)
/test/test
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