forked from JuliaPackaging/BinaryProvider.jl
-
Notifications
You must be signed in to change notification settings - Fork 0
/
.travis.yml
39 lines (35 loc) · 991 Bytes
/
.travis.yml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
# Documentation: http://docs.travis-ci.com/user/languages/julia/
language: julia
os:
- linux
- osx
julia:
- 0.7
- 1.0
- nightly
notifications:
email: false
matrix:
include:
# Make sure to override to "wget" at least once
- julia: 1.0
os: linux
env: BINARYPROVIDER_DOWNLOAD_ENGINE="wget"
# Test with `busybox` tools
# NOTE: This disabled for now, as Ubuntu's busybox doesn't support HTTPS.
# Tested locally to be working on alpine linux, so good enough for now.
#- julia: 1.0
# os: linux
# env: BINARYPROVIDER_DOWNLOAD_ENGINE="busybox wget" BINARYPROVIDER_COMPRESSION_ENGINE="busybox tar"
# Ironic. He could provide binaries for others but not himself...
addons:
apt:
packages:
- curl
- wget
- tar
- gzip
- busybox
after_success:
# push coverage results to Codecov
- julia -e 'cd(Pkg.dir("BinaryProvider")); Pkg.add("Coverage"); using Coverage; Codecov.submit(Codecov.process_folder())'