From 8e7e0dd1bf563b0beb8606a166b11391377ccf53 Mon Sep 17 00:00:00 2001 From: kalmarek Date: Wed, 30 Oct 2019 21:42:45 +0100 Subject: [PATCH 1/3] fix codecov --- .travis.yml | 2 +- README.md | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/.travis.yml b/.travis.yml index fd27633..f72ccef 100644 --- a/.travis.yml +++ b/.travis.yml @@ -17,6 +17,6 @@ matrix: - julia: nightly script: - - julia -e 'using Pkg; pkg"add https://github.com/kalmarek/Groups.jl"; Pkg.build(); Pkg.test(coverage=true);' + - julia -e 'using Pkg; Pkg.add("https://github.com/kalmarek/Groups.jl"); Pkg.build(); Pkg.test(coverage=true);' codecov: true diff --git a/README.md b/README.md index 29cf209..ca58bc0 100644 --- a/README.md +++ b/README.md @@ -3,7 +3,7 @@ [![Build Status](https://travis-ci.org/kalmarek/GroupRings.jl.svg?branch=master)](https://travis-ci.org/kalmarek/GroupRings.jl) [![codecov](https://codecov.io/gh/kalmarek/GroupRings.jl/branch/master/graph/badge.svg)](https://codecov.io/gh/kalmarek/GroupRings.jl) -Please have a look at [tests](https://github.com/kalmarek/GroupRings.jl/blob/master/test/runtests.jl) to see how to use this package. It depends on [AbstractAlgebra.jl](https://github.com/Nemocas/AbstractAlgebra.jl) and [Groups.jl](https://github.com/kalmarek/Groups.jl) +Please have a look at [tests](https://github.com/kalmarek/GroupRings.jl/blob/master/test/runtests.jl) to see how to use this package. It depends on [AbstractAlgebra.jl](https://github.com/Nemocas/AbstractAlgebra.jl) and (optionally) [Groups.jl](https://github.com/kalmarek/Groups.jl) For an example applications have a look at our papers: [1703.09680](https://arxiv.org/abs/1703.09680), [1712.07167](https://arxiv.org/abs/1712.07167) and [1812.03456](https://arxiv.org/abs/1812.03456). From 885b8d508a24bbd7e86afd23a1e98b6a27f336c9 Mon Sep 17 00:00:00 2001 From: kalmarek Date: Wed, 30 Oct 2019 23:16:49 +0100 Subject: [PATCH 2/3] use PackageSpec --- .travis.yml | 2 +- README.md | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/.travis.yml b/.travis.yml index f72ccef..a1fff2e 100644 --- a/.travis.yml +++ b/.travis.yml @@ -17,6 +17,6 @@ matrix: - julia: nightly script: - - julia -e 'using Pkg; Pkg.add("https://github.com/kalmarek/Groups.jl"); Pkg.build(); Pkg.test(coverage=true);' + - julia -e 'using Pkg; Pkg.add(PackageSpec(url="https://github.com/kalmarek/Groups.jl")); Pkg.build(); Pkg.test(coverage=true);' codecov: true diff --git a/README.md b/README.md index ca58bc0..22a223f 100644 --- a/README.md +++ b/README.md @@ -3,7 +3,7 @@ [![Build Status](https://travis-ci.org/kalmarek/GroupRings.jl.svg?branch=master)](https://travis-ci.org/kalmarek/GroupRings.jl) [![codecov](https://codecov.io/gh/kalmarek/GroupRings.jl/branch/master/graph/badge.svg)](https://codecov.io/gh/kalmarek/GroupRings.jl) -Please have a look at [tests](https://github.com/kalmarek/GroupRings.jl/blob/master/test/runtests.jl) to see how to use this package. It depends on [AbstractAlgebra.jl](https://github.com/Nemocas/AbstractAlgebra.jl) and (optionally) [Groups.jl](https://github.com/kalmarek/Groups.jl) +Please have a look at [tests](https://github.com/kalmarek/GroupRings.jl/blob/master/test/runtests.jl) to see how to use this package. It depends on [AbstractAlgebra.jl](https://github.com/Nemocas/AbstractAlgebra.jl) and optionally [Groups.jl](https://github.com/kalmarek/Groups.jl) For an example applications have a look at our papers: [1703.09680](https://arxiv.org/abs/1703.09680), [1712.07167](https://arxiv.org/abs/1712.07167) and [1812.03456](https://arxiv.org/abs/1812.03456). From cfac73e5f0b2468da01690ffc20e43b6a367c2eb Mon Sep 17 00:00:00 2001 From: kalmarek Date: Wed, 20 Nov 2019 10:11:04 +0100 Subject: [PATCH 3/3] try again --- .travis.yml | 1 + 1 file changed, 1 insertion(+) diff --git a/.travis.yml b/.travis.yml index a1fff2e..148bc2c 100644 --- a/.travis.yml +++ b/.travis.yml @@ -18,5 +18,6 @@ matrix: script: - julia -e 'using Pkg; Pkg.add(PackageSpec(url="https://github.com/kalmarek/Groups.jl")); Pkg.build(); Pkg.test(coverage=true);' + - julia --color=yes -e "if VERSION < v\"0.7.0-DEV.5183\"; cd(Pkg.dir(\"${JL_PKG}\")); else using Pkg; end; Pkg.add(\"Coverage\"); using Coverage; Codecov.submit(process_folder())" codecov: true