Skip to content

Commit

Permalink
Remove the matrix for Travis CI (yeesian#135)
Browse files Browse the repository at this point in the history
* Remove the matrix for Travis CI

it is a deprecated alias for `jobs` (see https://juliadocs.github.io/Documenter.jl/stable/man/hosting/#Travis-CI for details)

Ref. yeesian#134. (I don't know if it fixes it yet)

* use download_verify from Pkg

* remove BinaryProvider import

* probe_platform_engines!

Co-authored-by: Martijn Visser <mgvisser@gmail.com>
  • Loading branch information
yeesian and visr authored Aug 17, 2020
1 parent e944323 commit 260b852
Show file tree
Hide file tree
Showing 5 changed files with 6 additions and 8 deletions.
3 changes: 0 additions & 3 deletions .travis.yml
Original file line number Diff line number Diff line change
Expand Up @@ -7,9 +7,6 @@ julia:
- 1.3
- 1
- nightly
matrix:
allow_failures:
- julia: nightly
notifications:
email: false
coveralls: true
Expand Down
4 changes: 2 additions & 2 deletions Project.toml
Original file line number Diff line number Diff line change
Expand Up @@ -22,10 +22,10 @@ GeoInterface = "0.4, 0.5"
julia = "1.3"

[extras]
BinaryProvider = "b99e7846-7c00-51b0-8f62-c81ae34c0232"
Dates = "ade2ca70-3891-5945-98fb-dc099432e06a"
Pkg = "44cfe95a-1eb2-52ea-b672-e2afdf69b78f"
Statistics = "10745b16-79ce-11e8-11f9-7d13ad32a3b2"
Test = "8dfed614-e22c-5e08-85e1-65c5234f0b40"

[targets]
test = ["Dates", "Statistics", "Test", "BinaryProvider"]
test = ["Dates", "Pkg", "Statistics", "Test"]
1 change: 0 additions & 1 deletion docs/Project.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,5 @@
[deps]
ArchGDAL = "c9ce4bd3-c3d5-55b8-8973-c0e20141b8c3"
BinaryProvider = "b99e7846-7c00-51b0-8f62-c81ae34c0232"
DiskArrays = "3c3547ce-8d99-4f5e-a174-61eb10b00ae3"
Documenter = "e30172f5-a6a5-5a46-863b-614d45cd2de4"

Expand Down
4 changes: 3 additions & 1 deletion test/remotefiles.jl
Original file line number Diff line number Diff line change
@@ -1,7 +1,9 @@
# this file downloads files which are used during testing the package
# if they are already present and their checksum matches, they are not downloaded again

using BinaryProvider
using Pkg.PlatformEngines

probe_platform_engines!() # for download

const testdatadir = @__DIR__

Expand Down
2 changes: 1 addition & 1 deletion test/runtests.jl
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
using Test
using Dates
using BinaryProvider
using Pkg.PlatformEngines

# ensure all testing files are present
include("remotefiles.jl")
Expand Down

0 comments on commit 260b852

Please sign in to comment.