8000 Merge pull request #126 from davidanthoff/fix-ci · JuliaWeb/HttpServer.jl@5237e70 · GitHub
[go: up one dir, main page]

Skip to content
This repository was archived by the owner on Sep 4, 2019. It is now read-only.

Commit 5237e70

Browse files
authored
Merge pull request #126 from davidanthoff/fix-ci
Drop julia 0.4 and 0.5 support, fix CI
2 parents edcab25 + 0d070d6 commit 5237e70

File tree

3 files changed

+18
-18
lines changed

3 files changed

+18
-18
lines changed

.travis.yml

Lines changed: 10 additions & 13 deletions
Original file line numberDiff line numberDiff line change
@@ -1,18 +1,15 @@
11
language: julia
22
os:
3-
- linux
4-
- osx
3+
- linux
4+
- osx
55
julia:
6-
- 0.4
7-
- 0.5
8-
- 0.6
9-
- nightly
6+
- 0.6
7+
- nightly
8+
matrix:
9+
allow_failures:
10+
- julia: nightly
1011
notifications:
11-
email: false
12-
sudo: false
13-
#script: # use the default script setting which is equivalent to the following
14-
# - if [[ -a .git/shallow ]]; then git fetch --unshallow; fi
15-
# - julia -e 'Pkg.clone(pwd()); Pkg.build("HttpServer")'
16-
# - julia -e 'Pkg.test("HttpServer", coverage=true)'
12+
email: false
1713
after_success:
18-
- julia -e 'cd(Pkg.dir("HttpServer")); Pkg.add("Coverage"); using Coverage; Codecov.submit(process_folder())'
14+
- julia -e 'cd(Pkg.dir("HttpServer")); Pkg.add("Coverage"); using Coverage; Coveralls.submit(Coveralls.process_folder())'
15+
- julia -e 'cd(Pkg.dir("HttpServer")); Pkg.add("Coverage"); using Coverage; Codecov.submit(Codecov.process_folder())'

REQUIRE

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
julia 0.4
1+
julia 0.6
22
HttpCommon
33
HttpParser
44
MbedTLS

appveyor.yml

Lines changed: 7 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -1,9 +1,7 @@
11
environment:
22
matrix:
3-
- JULIA_URL: "https://julialang-s3.julialang.org/bin/winnt/x86/0.4/julia-0.4-latest-win32.exe"
4-
- JULIA_URL: "https://julialang-s3.julialang.org/bin/winnt/x64/0.4/julia-0.4-latest-win64.exe"
5-
- JULIA_URL: "https://julialang-s3.julialang.org/bin/winnt/x86/0.5/julia-0.5-latest-win32.exe"
6-
- JULIA_URL: "https://julialang-s3.julialang.org/bin/winnt/x64/0.5/julia-0.5-latest-win64.exe"
3+
- JULIA_URL: "https://julialang-s3.julialang.org/bin/winnt/x86/0.6/julia-0.6-latest-win32.exe"
4+
- JULIA_URL: "https://julialang-s3.julialang.org/bin/winnt/x64/0.6/julia-0.6-latest-win64.exe"
75
- JULIA_URL: "https://julialangnightlies-s3.julialang.org/bin/winnt/x86/julia-latest-win32.exe"
86
- JULIA_URL: "https://julialangnightlies-s3.julialang.org/bin/winnt/x64/julia-latest-win64.exe"
97

@@ -12,6 +10,11 @@ branches:
1210
- master
1311
- /release-.*/
1412

13+
matrix:
14+
allow_failures:
15+
- JULIA_URL: "https://julialangnightlies-s3.julialang.org/bin/winnt/x86/julia-latest-win32.exe"
16+
- JULIA_URL: "https://julialangnightlies-s3.julialang.org/bin/winnt/x64/julia-latest-win64.exe"
17+
1518
notifications:
1619
- provider: Email
1720
on_build_success: false

0 commit comments

Comments
 (0)
0