Skip to content
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.

Commit ac70a56

Browse files
authoredJun 26, 2017
Merge branch 'master' into nl/cov
2 parents 6b1166a + da68c52 commit ac70a56

File tree

485 files changed

+21826
-17592
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

485 files changed

+21826
-17592
lines changed
 

‎.travis.yml

+3-1
Original file line numberDiff line numberDiff line change
@@ -86,7 +86,7 @@ before_install:
8686
BUILDOPTS="-j3 USECLANG=1 LLVM_CONFIG=$(brew --prefix llvm39-julia)/bin/llvm-config LLVM_SIZE=$(brew --prefix llvm39-julia)/bin/llvm-size";
8787
BUILDOPTS="$BUILDOPTS VERBOSE=1 USE_BLAS64=0 SUITESPARSE_INC=-I$(brew --prefix suite-sparse-julia)/include FORCE_ASSERTIONS=1";
8888
BUILDOPTS="$BUILDOPTS LIBBLAS=-lopenblas LIBBLASNAME=libopenblas LIBLAPACK=-lopenblas LIBLAPACKNAME=libopenblas";
89-
for lib in LLVM SUITESPARSE ARPACK BLAS FFTW LAPACK GMP MPFR PCRE LIBUNWIND; do
89+
for lib in LLVM SUITESPARSE ARPACK BLAS LAPACK GMP MPFR PCRE LIBUNWIND; do
9090
BUILDOPTS="$BUILDOPTS USE_SYSTEM_$lib=1";
9191
done;
9292
export LDFLAGS="-L$(brew --prefix openblas-julia)/lib -L$(brew --prefix suite-sparse-julia)/lib";
@@ -147,3 +147,5 @@ script:
147147
rm -f julia/deps/scratch/libgit2-*/CMakeFiles/CMakeOutput.log
148148
# uncomment the following if failures are suspected to be due to the out-of-memory killer
149149
# - dmesg
150+
after_success:
151+
- cd julia && make -C doc deploy

‎CONTRIBUTING.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -48,7 +48,7 @@ A useful bug report filed as a GitHub issue provides information about how to re
4848
3. When filing a bug report, provide where possible:
4949
- The full error message, including the backtrace.
5050
- A minimal working example, i.e. the smallest chunk of code that triggers the error. Ideally, this should be code that can be pasted into a REPL or run from a source file. If the code is larger than (say) 50 lines, consider putting it in a [gist](https://gist.github.com).
51-
- The version of Julia as provided by the `versioninfo()` command. Occasionally, the longer output produced by `versioninfo(true)` may be useful also, especially if the issue is related to a specific package.
51+
- The version of Julia as provided by the `versioninfo()` command. Occasionally, the longer output produced by `versioninfo(verbose = true)` may be useful also, especially if the issue is related to a specific package.
5252

5353
4. When pasting code blocks or output, put triple backquotes (\`\`\`) around the text so GitHub will format it nicely. Code statements should be surrounded by single backquotes (\`). Be aware that the `@` sign tags users on GitHub, so references to macros should always be in single backquotes. See [GitHub's guide on Markdown](https://guides.github.com/features/mastering-markdown) for more formatting tricks.
5454

0 commit comments

Comments
 (0)