Skip to content

Commit 31fb1ed

Browse files
authored
Merge pull request #180 from davidanthoff/ci-allow-failure-nightly
Allow CI failures on nightly
2 parents aa8f1a6 + cefb47c commit 31fb1ed

File tree

2 files changed

+8
-0
lines changed

2 files changed

+8
-0
lines changed

.travis.yml

+3
Original file line numberDiff line numberDiff line change
@@ -7,6 +7,9 @@ julia:
77
- nightly
88
notifications:
99
email: false
10+
matrix:
11+
allow_failures:
12+
- julia: nightly
1013
#script: # default script is equivalent to the following
1114
# - if [[ -a .git/shallow ]]; then git fetch --unshallow; fi
1215
# - julia -e 'Pkg.clone(pwd()); Pkg.build("FileIO"); Pkg.test("FileIO"; coverage=true)'

appveyor.yml

+5
Original file line numberDiff line numberDiff line change
@@ -5,6 +5,11 @@ environment:
55
- JULIA_URL: "https://julialangnightlies-s3.julialang.org/bin/winnt/x86/julia-latest-win32.exe"
66
- JULIA_URL: "https://julialangnightlies-s3.julialang.org/bin/winnt/x64/julia-latest-win64.exe"
77

8+
matrix:
9+
allow_failures:
10+
- JULIA_URL: "https://julialangnightlies-s3.julialang.org/bin/winnt/x86/julia-latest-win32.exe"
11+
- JULIA_URL: "https://julialangnightlies-s3.julialang.org/bin/winnt/x64/julia-latest-win64.exe"
12+
813
branches:
914
only:
1015
- master

0 commit comments

Comments
 (0)