Skip to content

Commit

Permalink
Merge 8ca4f76 into 36a5df7
Browse files Browse the repository at this point in the history
  • Loading branch information
kortschak committed Mar 29, 2019
2 parents 36a5df7 + 8ca4f76 commit c60fd2a
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 11 deletions.
2 changes: 1 addition & 1 deletion .travis.yml
Original file line number Diff line number Diff line change
Expand Up @@ -68,7 +68,7 @@ install:
script:
- ${TRAVIS_BUILD_DIR}/.travis/check-imports.sh
- ${TRAVIS_BUILD_DIR}/.travis/check-copyright.sh
- source ${TRAVIS_BUILD_DIR}/.travis/$TRAVIS_OS_NAME/$BLAS_LIB/test.sh
- ${TRAVIS_BUILD_DIR}/.travis/$TRAVIS_OS_NAME/$BLAS_LIB/test.sh
- test -z "$(gofmt -d .)"
# This is run last since it alters the tree.
- ${TRAVIS_BUILD_DIR}/.travis/check-generate.sh
14 changes: 4 additions & 10 deletions .travis/linux/OpenBLAS/test.sh
100644 → 100755
Original file line number Diff line number Diff line change
@@ -1,17 +1,11 @@
set -ex
#!/bin/bash

set -x

go env
go get -d -t -v ./...
export CGO_LDFLAGS="-L/usr/lib -lopenblas"
go test -a -v ./...
if [[ $TRAVIS_SECURE_ENV_VARS = "true" ]]; then bash -c "$GOPATH/src/gonum.org/v1/netlib/.travis/test-coverage.sh"; fi

# travis compiles commands in script and then executes in bash. By adding
# set -e we are changing the travis build script's behavior, and the set
# -e lives on past the commands we are providing it. Some of the travis
# commands are supposed to exit with non zero status, but then continue
# executing. set -x makes the travis log files extremely verbose and
# difficult to understand.
#
# see travis-ci/travis-ci#5120
set +ex
set +x

0 comments on commit c60fd2a

Please sign in to comment.