Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Travis: run testinstall with all packages after testpackages #2835

Merged
merged 1 commit into from
Feb 6, 2019
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
5 changes: 3 additions & 2 deletions .travis.yml
Original file line number Diff line number Diff line change
Expand Up @@ -47,7 +47,8 @@ matrix:
# digraphs and other kernel extensions using C++ code (due to GCC's
# `profiler_trace.h` calling `atexit`; but that fails in loadable modules
# for technical reasons)
- env: TEST_SUITES=testpackages CFLAGS="-O2" CXXFLAGS="-O2" LDFLAGS=
# also don't use --enable-debug to prevent the tests from taking too long
- env: TEST_SUITES="testpackages testinstall-loadall" ABI=64 CFLAGS=-O2 CXXFLAGS=-O2 LDFLAGS=
addons:
apt_packages:
- gcc-multilib
Expand All @@ -64,7 +65,7 @@ matrix:
- libzmq3-dev # for ZeroMQInterface

# compiler packages and run package tests in 32 bit mode
- env: TEST_SUITES=testpackages CFLAGS="-O2" CXXFLAGS="-O2" LDFLAGS= ABI=32
- env: TEST_SUITES=testpackages ABI=32 CFLAGS=-O2 CXXFLAGS=-O2 LDFLAGS=
addons:
apt_packages:
- gcc-multilib
Expand Down
1 change: 1 addition & 0 deletions etc/ci-gather-coverage.sh
Original file line number Diff line number Diff line change
Expand Up @@ -30,6 +30,7 @@ BUILDDIR=$PWD

# Get dir for coverage results
COVDIR=coverage
ls -l "$COVDIR" # for debugging

# generate library coverage reports
$GAP -a 500M -m 500M -q <<GAPInput
Expand Down
2 changes: 2 additions & 0 deletions tst/testinstall-loadall.g
Original file line number Diff line number Diff line change
@@ -0,0 +1,2 @@
LoadAllPackages();
ReadGapRoot("tst/testinstall.g");