From 79022d8cc6f660a913e60c3e2e61533bd5b9c788 Mon Sep 17 00:00:00 2001 From: inky Date: Tue, 4 Jun 2024 15:30:58 -0500 Subject: [PATCH] CI: Clean CI badge (#140) * CI: Remove drone-ci files * CI: update status badge --- .drone.jsonnet | 27 ------------------- .drone.yml | 73 -------------------------------------------------- .gitattributes | 1 - README.md | 5 ++-- 4 files changed, 2 insertions(+), 104 deletions(-) delete mode 100644 .drone.jsonnet delete mode 100644 .drone.yml diff --git a/.drone.jsonnet b/.drone.jsonnet deleted file mode 100644 index e63df17..0000000 --- a/.drone.jsonnet +++ /dev/null @@ -1,27 +0,0 @@ -local Pipeline(os, arch, version) = { - kind: "pipeline", - name: os+" - "+arch+" - Julia "+version, - platform: { - os: os, - arch: arch - }, - steps: [ - { - name: "build", - image: "julia:"+version, - commands: [ - "julia --project=. --check-bounds=yes --color=yes -e 'using InteractiveUtils; versioninfo(verbose=true); using Pkg; Pkg.build(); Pkg.test(coverage=true)'" - ] - } - ], - trigger: { - branch: ["master"] - } -}; - -[ - Pipeline("linux", "arm", "1.3.1"), - Pipeline("linux", "arm", "1.4.1"), - Pipeline("linux", "arm64", "1.3.1"), - Pipeline("linux", "arm64", "1.5.3") -] diff --git a/.drone.yml b/.drone.yml deleted file mode 100644 index 268663c..0000000 --- a/.drone.yml +++ /dev/null @@ -1,73 +0,0 @@ ---- -kind: pipeline -name: linux - arm - Julia 1.3.1 - -platform: - os: linux - arch: arm - -steps: -- name: build - image: julia:1.3.1 - commands: - - "julia --project=. --check-bounds=yes --color=yes -e 'using InteractiveUtils; versioninfo(verbose=true); using Pkg; Pkg.build(); Pkg.test(coverage=true)'" - -trigger: - branch: - - master - ---- -kind: pipeline -name: linux - arm - Julia 1.4.1 - -platform: - os: linux - arch: arm - -steps: -- name: build - image: julia:1.4.1 - commands: - - "julia --project=. --check-bounds=yes --color=yes -e 'using InteractiveUtils; versioninfo(verbose=true); using Pkg; Pkg.build(); Pkg.test(coverage=true)'" - -trigger: - branch: - - master - ---- -kind: pipeline -name: linux - arm64 - Julia 1.3.1 - -platform: - os: linux - arch: arm64 - -steps: -- name: build - image: julia:1.3.1 - commands: - - "julia --project=. --check-bounds=yes --color=yes -e 'using InteractiveUtils; versioninfo(verbose=true); using Pkg; Pkg.build(); Pkg.test(coverage=true)'" - -trigger: - branch: - - master - ---- -kind: pipeline -name: linux - arm64 - Julia 1.5.3 - -platform: - os: linux - arch: arm64 - -steps: -- name: build - image: julia:1.5.3 - commands: - - "julia --project=. --check-bounds=yes --color=yes -e 'using InteractiveUtils; versioninfo(verbose=true); using Pkg; Pkg.build(); Pkg.test(coverage=true)'" - -trigger: - branch: - - master - -... diff --git a/.gitattributes b/.gitattributes index 8f2ca0e..e69de29 100644 --- a/.gitattributes +++ b/.gitattributes @@ -1 +0,0 @@ -.drone.jsonnet linguist-detectable=false diff --git a/README.md b/README.md index 70a3186..1038b78 100644 --- a/README.md +++ b/README.md @@ -1,9 +1,8 @@ GSL.jl ====== -[![CI](https://github.com/JuliaMath/GSL.jl/workflows/CI/badge.svg?branch=master)](https://github.com/JuliaMath/GSL.jl/actions?query=workflow%3ACI+branch%3Amaster) -[![drone.io](https://cloud.drone.io/api/badges/JuliaMath/GSL.jl/status.svg?ref=refs/heads/master)](https://cloud.drone.io/JuliaMath/GSL.jl) -[![codecov.io](http://codecov.io/github/JuliaMath/GSL.jl/coverage.svg?branch=master)](http://codecov.io/github/JuliaMath/GSL.jl?branch=master) +[![CI](https://github.com/JuliaMath/GSL.jl/actions/workflows/CI.yml/badge.svg)](https://github.com/JuliaMath/GSL.jl/actions/workflows/CI.yml) +[![codecov](https://codecov.io/github/JuliaMath/GSL.jl/graph/badge.svg?token=txbOhfb17l)](https://codecov.io/github/JuliaMath/GSL.jl) Julia wrapper for the [GNU Scientific Library](https://www.gnu.org/software/gsl/doc/html/index.html) (GSL), for Julia v1.0+.