Skip to content

Commit

Permalink
Merge pull request #237 from JuliaTime/cv/drop-appveyor
Browse files Browse the repository at this point in the history
Drop AppVeyor
  • Loading branch information
omus authored Jan 15, 2020
2 parents 8558e0f + adf42f4 commit 01254a6
Show file tree
Hide file tree
Showing 3 changed files with 29 additions and 69 deletions.
64 changes: 29 additions & 35 deletions .travis.yml
Original file line number Diff line number Diff line change
Expand Up @@ -25,14 +25,36 @@ stages:
# Note: At the moment `codecov: true` and `coveralls: true` are not working.
language: julia
os:
- osx
- linux
- osx
- windows
julia:
- 1.0
- 1.1
- 1.2
- 1.3
- 1.0 # LTS
- 1.3 # Latest release
- nightly
arch:
- x64
- x86
matrix:
fast_finish: true
jobs:
# Test 32-bit only on Linux
exclude:
- arch: x86
os: osx
- arch: x86
os: windows

# Documentation tests and deployment
include:
- <<: *doc_test
os: linux
julia: 1.0
- <<: *doc_test
os: linux
julia: nightly
- <<: *doc_deploy

env:
- JULIA_TZ_VERSION="2016j" # Ideally only set for the "test" stage
notifications:
Expand All @@ -42,34 +64,6 @@ script:
# Avoid setting JULIA_TZ_VERSION if the deps/build.jl file has been modified
- git fetch origin +:refs/remotes/origin/HEAD; if ! git diff --quiet origin/HEAD HEAD -- deps/build.jl; then unset JULIA_TZ_VERSION; fi
- echo $JULIA_TZ_VERSION # Display version here as Julia 0.7+ doesn't show the build logs by default
- |
julia -e '
using Pkg
if isfile("Project.toml") || isfile("JuliaProject.toml")
Pkg.build(); Pkg.test(coverage=true)
else
Pkg.clone(pwd()); Pkg.build("TimeZones"); Pkg.test("TimeZones"; coverage=true)
end'
- julia -e 'using Pkg; Pkg.build(); Pkg.test(coverage=true)'
after_success:
- |
julia -e '
using Pkg
Pkg.add("Coverage"); using Coverage
Codecov.submit(process_folder())
Coveralls.submit(Coveralls.process_folder())'
jobs:
include:
- <<: *doc_test
os: linux
julia: 1.0
- <<: *doc_test
os: linux
julia: nightly
- <<: *doc_test
os: osx
julia: 1.0
- <<: *doc_test
os: osx
julia: nightly
- <<: *doc_deploy
- julia -e 'using Pkg; Pkg.add("Coverage"); using Coverage; Codecov.submit(process_folder())'
1 change: 0 additions & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,6 @@ TimeZones.jl
============

[![Travis CI](https://travis-ci.org/JuliaTime/TimeZones.jl.svg?branch=master)](https://travis-ci.org/JuliaTime/TimeZones.jl)
[![AppVeyor](https://ci.appveyor.com/api/projects/status/ru96a9u8h83j9ixu/branch/master?svg=true)](https://ci.appveyor.com/project/omus/timezones-jl)
[![codecov](https://codecov.io/gh/JuliaTime/TimeZones.jl/branch/master/graph/badge.svg)](https://codecov.io/gh/JuliaTime/TimeZones.jl)
<br/>
[![Stable Documentation](https://img.shields.io/badge/docs-stable-blue.svg)](https://juliatime.github.io/TimeZones.jl/stable)
Expand Down
33 changes: 0 additions & 33 deletions appveyor.yml

This file was deleted.

2 comments on commit 01254a6

@omus
Copy link
Member Author

@omus omus commented on 01254a6 Jan 17, 2020

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

@JuliaRegistrator
Copy link

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Registration pull request created: JuliaRegistries/General/8097

After the above pull request is merged, it is recommended that a tag is created on this repository for the registered package version.

This will be done automatically if Julia TagBot is installed, or can be done manually through the github interface, or via:

git tag -a v0.10.4 -m "<description of version>" 01254a6d501062f2aaf140c485b8181f0c4ea37e
git push origin v0.10.4

Please sign in to comment.