commit 01fe3557af4c2c911dd65a61bbdd0cfebcdde8e5 Author: Ryan Plessner Date: Mon Aug 31 16:35:42 2015 -0400 Initial commit diff --git a/.gitignore b/.gitignore new file mode 100644 index 0000000..aa6b62a --- /dev/null +++ b/.gitignore @@ -0,0 +1,5 @@ +*~ +*.bak +coverage/ +compiled/ +doc/ diff --git a/.travis.yml b/.travis.yml new file mode 100644 index 0000000..7d7bea5 --- /dev/null +++ b/.travis.yml @@ -0,0 +1,25 @@ +langauge: c +sudo: false +env: + global: + - RACKET_DIR=~/racket + matrix: + - RACKET_VERSION=6.1.1 + - RACKET_VERSION=6.2 + - RACKET_VERSION=HEAD + +matrix: + fast_finish: true + +before_install: + - git clone https://github.com/greghendershott/travis-racket.git ../travis-racket + - cat ../travis-racket/install-racket.sh | bash + - export PATH="${RACKET_DIR}/bin:${PATH}" + +install: + - git clone https://github.com/florence/cover ../cover + - raco pkg install ../cover/ + - raco pkg install --deps search-auto $TRAVIS_BUILD_DIR + +script: + - raco test $TRAVIS_BUILD_DIR # run tests. you wrote tests, right? diff --git a/LICENSE b/LICENSE new file mode 100644 index 0000000..7cf13ba --- /dev/null +++ b/LICENSE @@ -0,0 +1,8 @@ +The MIT License (MIT) +Copyright © 2015 Spencer Florence and Ryan Plessner + +Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the “Software”), to deal in the Software without restriction, including without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of the Software, and to permit persons to whom the Software is furnished to do so, subject to the following conditions: + +The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software. + +THE SOFTWARE IS PROVIDED “AS IS”, WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE. diff --git a/README.md b/README.md new file mode 100644 index 0000000..96cb49b --- /dev/null +++ b/README.md @@ -0,0 +1,3 @@ +# Cover Codecov + +Add [Codecov](https://codecov.io/) support to [Cover](https://github.com/florence/cover). diff --git a/codecov/info.rkt b/codecov/info.rkt new file mode 100644 index 0000000..41c3710 --- /dev/null +++ b/codecov/info.rkt @@ -0,0 +1,3 @@ +#lang setup/infotab + +(define cover-formats '(("codecov" cover/codecov generate-codecov-coverage))) diff --git a/codecov/private/ci-service.rkt b/codecov/private/ci-service.rkt new file mode 100644 index 0000000..004d544 --- /dev/null +++ b/codecov/private/ci-service.rkt @@ -0,0 +1,16 @@ +#lang racket/base + +(provide ci-service^) +(require racket/unit) + + +(define-signature ci-service^ + ((contracted + ;; Return Git Branch that is being tested + [branch (-> string?)] + ;; The commit that the code is on + [commit (-> string?)] + ;; The Service Job identifier + [job (-> string?)] + ;; The codecov token + [token (-> string?)]))) diff --git a/info.rkt b/info.rkt new file mode 100644 index 0000000..e0cdbbb --- /dev/null +++ b/info.rkt @@ -0,0 +1,13 @@ +#lang setup/infotab + +(define name "cover-codecov") +(define collection 'multi) + +(define version "0.1.0") + +(define deps '( + ("base" #:version "6.1.1") + "envy" + "cover")) + +(define build-deps '("rackunit-lib"))