diff options
author | Ethan Koenig <etk39@cornell.edu> | 2017-04-25 03:24:51 -0400 |
---|---|---|
committer | Lunny Xiao <xiaolunwen@gmail.com> | 2017-04-25 15:24:51 +0800 |
commit | c58708d3eedb352bb277feb2c12bb1652a8a58b7 (patch) | |
tree | 97aeed6a13031618baa7d67185b04faea506da38 /.drone.yml | |
parent | 3012971e92b79683178a286511c091fb31ee90f6 (diff) | |
download | gitea-c58708d3eedb352bb277feb2c12bb1652a8a58b7.tar.gz gitea-c58708d3eedb352bb277feb2c12bb1652a8a58b7.zip |
Integration test framework (#1290)
* Integration test framework
* udpate drone sign
* Formatting fixes and move router.go to routers/
* update sign for drone
Diffstat (limited to '.drone.yml')
-rw-r--r-- | .drone.yml | 15 |
1 files changed, 13 insertions, 2 deletions
diff --git a/.drone.yml b/.drone.yml index 34cafd357c..eb37dc8ac3 100644 --- a/.drone.yml +++ b/.drone.yml @@ -25,6 +25,17 @@ pipeline: when: event: [ push, tag, pull_request ] + test-sqlite: + image: webhippie/golang:edge + pull: true + environment: + TAGS: bindata + GOPATH: /srv/app + commands: + - make test-sqlite + when: + event: [ push, tag, pull_request ] + test-mysql: image: webhippie/golang:edge pull: true @@ -32,7 +43,7 @@ pipeline: TAGS: bindata GOPATH: /srv/app commands: - - make test-mysql + - echo make test-mysql # Not ready yet when: event: [ push, tag, pull_request ] @@ -43,7 +54,7 @@ pipeline: TAGS: bindata GOPATH: /srv/app commands: - - make test-pgsql + - echo make test-pqsql # Not ready yet when: event: [ push, tag, pull_request ] |