Initial commit

This commit is contained in:
Ryan Plessner 2015-08-31 16:35:42 -04:00
commit 01fe3557af
7 changed files with 73 additions and 0 deletions

5
.gitignore vendored Normal file
View File

@ -0,0 +1,5 @@
*~
*.bak
coverage/
compiled/
doc/

25
.travis.yml Normal file
View File

@ -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?

8
LICENSE Normal file
View File

@ -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.

3
README.md Normal file
View File

@ -0,0 +1,3 @@
# Cover Codecov
Add [Codecov](https://codecov.io/) support to [Cover](https://github.com/florence/cover).

3
codecov/info.rkt Normal file
View File

@ -0,0 +1,3 @@
#lang setup/infotab
(define cover-formats '(("codecov" cover/codecov generate-codecov-coverage)))

View File

@ -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?)])))

13
info.rkt Normal file
View File

@ -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"))