forked from JuliaRegistries/General
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy path.travis.yml
27 lines (25 loc) · 896 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
## Documentation: http://docs.travis-ci.com/user/languages/julia/
if: type != push
language: julia
os:
- linux
julia:
- 1.0
- 1.2
- 1.3
# - nightly
# matrix:
# allow_failures:
# - julia: nightly
before_script: julia --project=.ci/ -e 'using Pkg; Pkg.instantiate()'
script: julia --project=.ci/ --color=yes -e 'import RegistryCI; RegistryCI.test()'
# after_success:
# - if [ "$TRAVIS_JULIA_VERSION" != "1.2" ]; then exit; fi
# - julia --project=.ci/ -e 'ENV["JULIA_DEBUG"] = "RegistryCI,AutoMerge"; using RegistryCI; using Dates; RegistryCI.AutoMerge.run(merge_new_packages=true, merge_new_versions=true, new_package_waiting_period=Minute(4320), new_version_waiting_period=Minute(20), registry="JuliaRegistries/General", authorized_authors=["JuliaRegistrator"], suggest_onepointzero=false)'
branches:
only:
- master
notifications:
email: false
git:
depth: 99999999