From b78938b0445a15a4c88ec6c391b67073873ca050 Mon Sep 17 00:00:00 2001 From: inky Date: Tue, 4 Jun 2024 14:58:46 -0500 Subject: [PATCH] ci: remove broken drone CI and update badge (#179) * ci: remove broken drone CI * README: add github acrion badge * README: add codecov badge --- .drone.jsonnet | 27 --------------------------- .drone.yml | 41 ----------------------------------------- README.md | 3 +++ 3 files changed, 3 insertions(+), 68 deletions(-) delete mode 100644 .drone.jsonnet delete mode 100644 .drone.yml diff --git a/.drone.jsonnet b/.drone.jsonnet deleted file mode 100644 index 7689bb2..0000000 --- a/.drone.jsonnet +++ /dev/null @@ -1,27 +0,0 @@ -local Pipeline(os, arch, version, alpine=false) = { - kind: "pipeline", - name: os+" - "+arch+" - Julia "+version+(if alpine then " (Alpine)" else ""), - platform: { - os: os, - arch: arch - }, - steps: [ - { - name: "Run tests", - image: "julia:"+version+(if alpine then "-alpine" else ""), - commands: [ - "julia --project=. --check-bounds=yes --color=yes -e 'using InteractiveUtils; versioninfo(verbose=true)'", - "julia --project=. --check-bounds=yes --color=yes -e 'using Pkg; Pkg.build()'", - "julia --project=. --check-bounds=yes --color=yes -e 'using Pkg; Pkg.test(coverage=true)'" - ] - } - ], - trigger: { - branch: ["master"] - } -}; - -[ - Pipeline("linux", "arm64", "1.3"), - Pipeline("linux", "arm64", "1.7.2") -] diff --git a/.drone.yml b/.drone.yml deleted file mode 100644 index 25e0dab..0000000 --- a/.drone.yml +++ /dev/null @@ -1,41 +0,0 @@ ---- -kind: pipeline -name: linux - arm64 - Julia 1.6 - -platform: - os: linux - arch: arm64 - -steps: -- name: Run tests - image: julia:1.6 - commands: - - "julia --project=. --check-bounds=yes --color=yes -e 'using InteractiveUtils; versioninfo(verbose=true)'" - - "julia --project=. --check-bounds=yes --color=yes -e 'using Pkg; Pkg.build()'" - - "julia --project=. --check-bounds=yes --color=yes -e 'using Pkg; Pkg.test(coverage=true)'" - -trigger: - branch: - - master - ---- -kind: pipeline -name: linux - arm64 - Julia 1.7.2 - -platform: - os: linux - arch: arm64 - -steps: -- name: Run tests - image: julia:1.7.2 - commands: - - "julia --project=. --check-bounds=yes --color=yes -e 'using InteractiveUtils; versioninfo(verbose=true)'" - - "julia --project=. --check-bounds=yes --color=yes -e 'using Pkg; Pkg.build()'" - - "julia --project=. --check-bounds=yes --color=yes -e 'using Pkg; Pkg.test(coverage=true)'" - -trigger: - branch: - - master - -... diff --git a/README.md b/README.md index c48e281..120d405 100644 --- a/README.md +++ b/README.md @@ -1,5 +1,8 @@ # DecFP: IEEE Decimal Floating-point in Julia + +[![CI](https://github.com/JuliaMath/DecFP.jl/actions/workflows/CI.yml/badge.svg)](https://github.com/JuliaMath/DecFP.jl/actions/workflows/CI.yml) [![Coverage Status](https://coveralls.io/repos/github/JuliaMath/DecFP.jl/badge.svg?branch=master)](https://coveralls.io/github/JuliaMath/DecFP.jl?branch=master) +[![codecov](https://codecov.io/github/JuliaMath/DecFP.jl/graph/badge.svg?token=9thK9TVT9V)](https://codecov.io/github/JuliaMath/DecFP.jl) The DecFP package is a Julia wrapper around the [Intel Decimal Floating-Point Math