3 changed files with 134 additions and 114 deletions
@ -1,36 +1,36 @@ |
|||||||
environment: |
# environment: |
||||||
matrix: |
# matrix: |
||||||
- julia_version: 1.2 |
# - julia_version: 1.2 |
||||||
# - julia_version: latest |
# # - julia_version: latest |
||||||
|
|
||||||
platform: |
# platform: |
||||||
- x86 # 32-bit |
# - x86 # 32-bit |
||||||
- x64 # 64-bit |
# - x64 # 64-bit |
||||||
|
|
||||||
## uncomment the following lines to allow failures on nightly julia |
# ## uncomment the following lines to allow failures on nightly julia |
||||||
## (tests will run but not make your overall status red) |
# ## (tests will run but not make your overall status red) |
||||||
#matrix: |
# #matrix: |
||||||
# allow_failures: |
# # allow_failures: |
||||||
# - julia_version: latest |
# # - julia_version: latest |
||||||
|
|
||||||
branches: |
# branches: |
||||||
only: |
# only: |
||||||
- master |
# - master |
||||||
- /release-.*/ |
# - /release-.*/ |
||||||
|
|
||||||
notifications: |
# notifications: |
||||||
- provider: Email |
# - provider: Email |
||||||
on_build_success: false |
# on_build_success: false |
||||||
on_build_failure: false |
# on_build_failure: false |
||||||
on_build_status_changed: false |
# on_build_status_changed: false |
||||||
|
|
||||||
install: |
# install: |
||||||
- ps: iex ((new-object net.webclient).DownloadString("https://raw.githubusercontent.com/JuliaCI/Appveyor.jl/version-1/bin/install.ps1")) |
# - ps: iex ((new-object net.webclient).DownloadString("https://raw.githubusercontent.com/JuliaCI/Appveyor.jl/version-1/bin/install.ps1")) |
||||||
|
|
||||||
build_script: |
# build_script: |
||||||
- echo "%JL_BUILD_SCRIPT%" |
# - echo "%JL_BUILD_SCRIPT%" |
||||||
- C:\julia\bin\julia -e "%JL_BUILD_SCRIPT%" |
# - C:\julia\bin\julia -e "%JL_BUILD_SCRIPT%" |
||||||
|
|
||||||
test_script: |
# test_script: |
||||||
- echo "%JL_TEST_SCRIPT%" |
# - echo "%JL_TEST_SCRIPT%" |
||||||
- C:\julia\bin\julia -e "%JL_TEST_SCRIPT%" |
# - C:\julia\bin\julia -e "%JL_TEST_SCRIPT%" |
||||||
|
|||||||
@ -1,32 +1,32 @@ |
|||||||
## Documentation: http://docs.travis-ci.com/user/languages/julia/ |
# ## Documentation: http://docs.travis-ci.com/user/languages/julia/ |
||||||
language: julia |
# language: julia |
||||||
os: |
# os: |
||||||
- linux |
# - linux |
||||||
- osx |
# - osx |
||||||
julia: |
# julia: |
||||||
- 1.0 |
# - 1.0 |
||||||
- 1.2 |
# - 1.2 |
||||||
- 1.3 |
# - 1.3 |
||||||
- nightly |
# - nightly |
||||||
branches: |
# branches: |
||||||
only: |
# only: |
||||||
- master |
# - master |
||||||
- /^v\d+\.\d+(\.\d+)?(-\S*)?$/ |
# - /^v\d+\.\d+(\.\d+)?(-\S*)?$/ |
||||||
after_success: |
# after_success: |
||||||
- if [[ $TRAVIS_JULIA_VERSION = 1.2 ]] && [[ $TRAVIS_OS_NAME = linux ]]; then |
# - if [[ $TRAVIS_JULIA_VERSION = 1.2 ]] && [[ $TRAVIS_OS_NAME = linux ]]; then |
||||||
julia --project=test/coverage -e 'using Pkg; Pkg.instantiate(); |
# julia --project=test/coverage -e 'using Pkg; Pkg.instantiate(); |
||||||
using Coverage; Codecov.submit(Codecov.process_folder())'; |
# using Coverage; Codecov.submit(Codecov.process_folder())'; |
||||||
fi |
# fi |
||||||
# jobs: |
# # jobs: |
||||||
# include: |
# # include: |
||||||
# - stage: Documentation |
# # - stage: Documentation |
||||||
# julia: 1.2 |
# # julia: 1.2 |
||||||
# os: linux |
# # os: linux |
||||||
# script: |
# # script: |
||||||
# - julia --project=docs -e 'using Pkg; Pkg.instantiate()' |
# # - julia --project=docs -e 'using Pkg; Pkg.instantiate()' |
||||||
# - julia --project=docs --color=yes docs/make.jl |
# # - julia --project=docs --color=yes docs/make.jl |
||||||
# after_success: skip |
# # after_success: skip |
||||||
notifications: |
# notifications: |
||||||
email: false |
# email: false |
||||||
git: |
# git: |
||||||
depth: 99999999 |
# depth: 99999999 |
||||||
|
|||||||
Loading…
Reference in new issue