mirror of
https://github.com/MillironX/Kelpie.jl.git
synced 2025-01-15 09:19:07 -05:00
Remove extra files from PkgTemplates generator
This commit is contained in:
parent
7df48e8cf5
commit
d9f751e426
6 changed files with 0 additions and 144 deletions
|
@ -1,33 +0,0 @@
|
||||||
# Documentation: https://github.com/JuliaCI/Appveyor.jl
|
|
||||||
environment:
|
|
||||||
matrix:
|
|
||||||
- julia_version: 1.6
|
|
||||||
- julia_version: 1.7
|
|
||||||
- julia_version: nightly
|
|
||||||
platform:
|
|
||||||
- x64
|
|
||||||
cache:
|
|
||||||
- '%USERPROFILE%\.julia\artifacts'
|
|
||||||
matrix:
|
|
||||||
allow_failures:
|
|
||||||
- julia_version: nightly
|
|
||||||
branches:
|
|
||||||
only:
|
|
||||||
- master
|
|
||||||
- /release-.*/
|
|
||||||
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_BUILD_SCRIPT%"
|
|
||||||
- C:\julia\bin\julia -e "%JL_BUILD_SCRIPT%"
|
|
||||||
test_script:
|
|
||||||
- echo "%JL_TEST_SCRIPT%"
|
|
||||||
- C:\julia\bin\julia -e "%JL_TEST_SCRIPT%"
|
|
||||||
on_success:
|
|
||||||
- echo "%JL_CODECOV_SCRIPT%"
|
|
||||||
- C:\julia\bin\julia -e "%JL_CODECOV_SCRIPT%"
|
|
18
.cirrus.yml
18
.cirrus.yml
|
@ -1,18 +0,0 @@
|
||||||
freebsd_instance:
|
|
||||||
image: freebsd-12-0-release-amd64
|
|
||||||
task:
|
|
||||||
name: FreeBSD
|
|
||||||
artifacts_cache:
|
|
||||||
folder: ~/.julia/artifacts
|
|
||||||
env:
|
|
||||||
JULIA_VERSION: 1.6
|
|
||||||
JULIA_VERSION: 1.7
|
|
||||||
JULIA_VERSION: nightly
|
|
||||||
install_script:
|
|
||||||
- sh -c "$(fetch https://raw.githubusercontent.com/ararslan/CirrusCI.jl/master/bin/install.sh -o -)"
|
|
||||||
build_script:
|
|
||||||
- cirrusjl build
|
|
||||||
test_script:
|
|
||||||
- cirrusjl test
|
|
||||||
coverage_script:
|
|
||||||
- cirrusjl coverage codecov coveralls
|
|
27
.drone.star
27
.drone.star
|
@ -1,27 +0,0 @@
|
||||||
def main(ctx):
|
|
||||||
pipelines = []
|
|
||||||
for arch in ["amd64"]:
|
|
||||||
for julia in ["1.6", "1.7"]:
|
|
||||||
pipelines.append(pipeline(arch, julia))
|
|
||||||
return pipelines
|
|
||||||
|
|
||||||
def pipeline(arch, julia):
|
|
||||||
return {
|
|
||||||
"kind": "pipeline",
|
|
||||||
"type": "docker",
|
|
||||||
"name": "Julia %s - %s" % (julia, arch),
|
|
||||||
"platform": {
|
|
||||||
"os": "linux",
|
|
||||||
"arch": arch,
|
|
||||||
},
|
|
||||||
"steps": [
|
|
||||||
{
|
|
||||||
"name": "test",
|
|
||||||
"image": "julia:%s" % julia,
|
|
||||||
"commands": [
|
|
||||||
"julia -e 'using InteractiveUtils; versioninfo()'",
|
|
||||||
"julia --project=@. -e 'using Pkg; Pkg.instantiate(); Pkg.build(); Pkg.test();'",
|
|
||||||
],
|
|
||||||
},
|
|
||||||
],
|
|
||||||
}
|
|
|
@ -1,28 +0,0 @@
|
||||||
.script:
|
|
||||||
script:
|
|
||||||
- |
|
|
||||||
julia --project=@. -e '
|
|
||||||
using Pkg
|
|
||||||
Pkg.build()
|
|
||||||
Pkg.test(coverage=true)'
|
|
||||||
.coverage:
|
|
||||||
coverage: /Test coverage (\d+\.\d+%)/
|
|
||||||
after_script:
|
|
||||||
- |
|
|
||||||
julia -e '
|
|
||||||
using Pkg
|
|
||||||
Pkg.add("Coverage")
|
|
||||||
using Coverage
|
|
||||||
c, t = get_summary(process_folder())
|
|
||||||
using Printf
|
|
||||||
@printf "Test coverage %.2f%%\n" 100c / t'
|
|
||||||
Julia 1.6:
|
|
||||||
image: julia:1.6
|
|
||||||
extends:
|
|
||||||
- .script
|
|
||||||
- .coverage
|
|
||||||
Julia 1.7:
|
|
||||||
image: julia:1.7
|
|
||||||
extends:
|
|
||||||
- .script
|
|
||||||
- .coverage
|
|
32
.travis.yml
32
.travis.yml
|
@ -1,32 +0,0 @@
|
||||||
# Documentation: http://docs.travis-ci.com/user/languages/julia
|
|
||||||
language: julia
|
|
||||||
notifications:
|
|
||||||
email: false
|
|
||||||
julia:
|
|
||||||
- 1.6
|
|
||||||
- 1.7
|
|
||||||
- nightly
|
|
||||||
os:
|
|
||||||
- linux
|
|
||||||
arch:
|
|
||||||
- x64
|
|
||||||
cache:
|
|
||||||
directories:
|
|
||||||
- ~/.julia/artifacts
|
|
||||||
jobs:
|
|
||||||
fast_finish: true
|
|
||||||
allow_failures:
|
|
||||||
- julia: nightly
|
|
||||||
after_success:
|
|
||||||
- |
|
|
||||||
julia -e '
|
|
||||||
using Pkg
|
|
||||||
Pkg.add("Coverage")
|
|
||||||
using Coverage
|
|
||||||
Codecov.submit(process_folder())'
|
|
||||||
- |
|
|
||||||
julia -e '
|
|
||||||
using Pkg
|
|
||||||
Pkg.add("Coverage")
|
|
||||||
using Coverage
|
|
||||||
Coveralls.submit(process_folder())'
|
|
|
@ -5,12 +5,6 @@
|
||||||
[![Build Status](https://github.com/MillironX/Kelpie.jl/actions/workflows/CI.yml/badge.svg?branch=master)](https://github.com/MillironX/Kelpie.jl/actions/workflows/CI.yml?query=branch%3Amaster)
|
[![Build Status](https://github.com/MillironX/Kelpie.jl/actions/workflows/CI.yml/badge.svg?branch=master)](https://github.com/MillironX/Kelpie.jl/actions/workflows/CI.yml?query=branch%3Amaster)
|
||||||
[![Build Status](https://github.com/MillironX/Kelpie.jl/badges/master/pipeline.svg)](https://github.com/MillironX/Kelpie.jl/pipelines)
|
[![Build Status](https://github.com/MillironX/Kelpie.jl/badges/master/pipeline.svg)](https://github.com/MillironX/Kelpie.jl/pipelines)
|
||||||
[![Coverage](https://github.com/MillironX/Kelpie.jl/badges/master/coverage.svg)](https://github.com/MillironX/Kelpie.jl/commits/master)
|
[![Coverage](https://github.com/MillironX/Kelpie.jl/badges/master/coverage.svg)](https://github.com/MillironX/Kelpie.jl/commits/master)
|
||||||
[![Build Status](https://travis-ci.com/MillironX/Kelpie.jl.svg?branch=master)](https://travis-ci.com/MillironX/Kelpie.jl)
|
|
||||||
[![Build Status](https://ci.appveyor.com/api/projects/status/github/MillironX/Kelpie.jl?svg=true)](https://ci.appveyor.com/project/MillironX/Kelpie-jl)
|
|
||||||
[![Build Status](https://cloud.drone.io/api/badges/MillironX/Kelpie.jl/status.svg)](https://cloud.drone.io/MillironX/Kelpie.jl)
|
|
||||||
[![Build Status](https://api.cirrus-ci.com/github/MillironX/Kelpie.jl.svg)](https://cirrus-ci.com/github/MillironX/Kelpie.jl)
|
|
||||||
[![Coverage](https://codecov.io/gh/MillironX/Kelpie.jl/branch/master/graph/badge.svg)](https://codecov.io/gh/MillironX/Kelpie.jl)
|
[![Coverage](https://codecov.io/gh/MillironX/Kelpie.jl/branch/master/graph/badge.svg)](https://codecov.io/gh/MillironX/Kelpie.jl)
|
||||||
[![Coverage](https://coveralls.io/repos/github/MillironX/Kelpie.jl/badge.svg?branch=master)](https://coveralls.io/github/MillironX/Kelpie.jl?branch=master)
|
|
||||||
[![Code Style: Blue](https://img.shields.io/badge/code%20style-blue-4495d1.svg)](https://github.com/invenia/BlueStyle)
|
[![Code Style: Blue](https://img.shields.io/badge/code%20style-blue-4495d1.svg)](https://github.com/invenia/BlueStyle)
|
||||||
[![ColPrac: Contributor's Guide on Collaborative Practices for Community Packages](https://img.shields.io/badge/ColPrac-Contributor's%20Guide-blueviolet)](https://github.com/SciML/ColPrac)
|
|
||||||
[![PkgEval](https://JuliaCI.github.io/NanosoldierReports/pkgeval_badges/K/Kelpie.svg)](https://JuliaCI.github.io/NanosoldierReports/pkgeval_badges/report.html)
|
[![PkgEval](https://JuliaCI.github.io/NanosoldierReports/pkgeval_badges/K/Kelpie.svg)](https://JuliaCI.github.io/NanosoldierReports/pkgeval_badges/report.html)
|
||||||
|
|
Loading…
Reference in a new issue