diff --git a/.travis.yml b/.travis.yml deleted file mode 100644 index ccd58dfb..00000000 --- a/.travis.yml +++ /dev/null @@ -1,44 +0,0 @@ -# Documentation: http://docs.travis-ci.com/user/languages/julia/ -language: julia -os: - - linux - # - osx -julia: - - 1.0 - - 1 - - nightly - -matrix: - allow_failures: - - julia: nightly - -addons: - apt: - packages: - - at-spi2-core - - libgtk-3-dev - - xauth - - xvfb - -env: - - GKS_ENCODING="utf8" - -cache: - directories: - - $HOME/.julia/artifacts - -sudo: required -before_install: - - if [[ "$TRAVIS_OS_NAME" == "linux" ]]; then pwd ; fi - - if [[ "$TRAVIS_OS_NAME" == "linux" ]]; then ./test/install_wkhtmltoimage.sh ; fi - -notifications: - email: true - -after_success: - - julia -e 'using Pkg; Pkg.add("Coverage"); using Coverage; Codecov.submit(process_folder())' - -script: - - if [[ -a .git/shallow ]]; then git fetch --unshallow; fi - - if [[ `uname` = "Linux" ]]; then TESTCMD="xvfb-run julia"; else TESTCMD="julia"; fi - - $TESTCMD -e 'using Pkg; Pkg.build(); Pkg.test(coverage=true)' diff --git a/appveyor.yml b/appveyor.yml deleted file mode 100644 index 081e56df..00000000 --- a/appveyor.yml +++ /dev/null @@ -1,46 +0,0 @@ -environment: - matrix: - - julia_version: 1.0 - - julia_version: 1 - - julia_version: nightly - -platform: - - x86 # 32-bit - - x64 # 64-bit - -# # Uncomment the following lines to allow failures on nightly julia -# # (tests will run but not make your overall status red) -matrix: - allow_failures: - - julia_version: nightly - -branches: - only: - - master - - /release-.*/ - -cache: - - '%USERPROFILE%\.julia\artifacts' - -notifications: - - provider: Email - on_build_success: false - on_build_failure: false - on_build_status_changed: false - -install: - - ps: iex ((new-object net.webclient).DownloadString("https://raw.githubusercontent.com/JuliaCI/Appveyor.jl/version-1/bin/install.ps1")) - -build_script: - - echo "%JL_TEST_SCRIPT%" - - C:\julia\bin\julia -e "%JL_BUILD_SCRIPT%" - -test_script: - - echo "%JL_TEST_SCRIPT%" - - C:\julia\bin\julia -e "%JL_TEST_SCRIPT%" - -# # Uncomment to support code coverage upload. Should only be enabled for packages -# # which would have coverage gaps without running on Windows -# on_success: -# - echo "%JL_CODECOV_SCRIPT%" -# - C:\julia\bin\julia -e "%JL_CODECOV_SCRIPT%"