summaryrefslogtreecommitdiffstats
path: root/.drone.yml
Commit message (Collapse)AuthorAgeFilesLines
* update image used for build-without-gcc step (#4818)techknowlogick2018-08-291-1/+1
| | | | As we've dropped support for go 1.8 (see 1.5.0 release post), now we need to ensure that a minimum of go 1.9 builds correctly.
* Upgrade images in .drone.yml to more recent versions (#4819)techknowlogick2018-08-291-9/+9
|
* Enable swagger validation back as issue with it has been fixed upstream (#4673)Lauris BH2018-08-111-1/+1
|
* Use correct site id for netlify (#4427)Thomas Boerger2018-07-111-1/+1
|
* Replaced docker docs with netlify deployment (#4420)Thomas Boerger2018-07-111-20/+6
|
* Disable swagger validation while it is not fixed in upstream (#4423)Lauris BH2018-07-111-1/+1
|
* fix exclude files .sha265 to .sha256 (#4304)Lunny Xiao2018-06-241-1/+1
|
* Add gpg-sign step to drone (#4188)Antoine GIRARD2018-06-241-0/+12
| | | | | | | | | | * Add gpg-sign step to drone * add compressed releases to gpg-sign targets * Use exclude to simplify file list drone-plugins/drone-gpgsign#2
* Updated drone config to use the "next" git plugin (#4281)kolaente2018-06-201-1/+1
|
* Fix swagger errors (#4220)Antoine GIRARD2018-06-121-0/+1
| | | | | | | | | | Fix all the resting errors to have a valid swagger file. They are still some warnings but nothing blocking. Doing so I found that some request still misses son parameters for some POST/PUT/PATCH request. This means the a client generated from the swagger file will not work completely. Fix #4088 by activating validation in drone Should fix #4010.
* Add $GOPATH/bin to PATH for make releases (#4020)Antoine GIRARD2018-05-221-0/+1
| | | Needed to access go tool gxz
* Add LDAP integration tests (#3897)Lauris BH2018-05-111-0/+8
| | | | | | | | | | | | * Add LDAP service for tests * Add LDAP login source and test user sign-in * Add checks to test if user data is correct * Add LDAP user sync test * Add failed user sign-in test
* feat: testing in go 1.10 version. (#3899)Bo-Yi Wu2018-05-071-23/+17
|
* pass secrets to drone build step for docker (#3879)techknowlogick2018-05-021-0/+1
|
* chore: simplify docker build process. (#2827)Bo-Yi Wu2018-04-301-15/+4
| | | | | | * chore: simplify docker build process. * chore: update docker plugin.
* Add swagger check (#3811)Antoine GIRARD2018-04-201-0/+1
|
* Update source installation requirements (#3124)Kim "BKC" Carlbäcker2018-01-161-1/+1
| | | | | | | | | | | | | | * Update source installation requirements We require Golang 1.8 since we use `net/url.PathEscape` which was not introduced until then * Use Golang 1.8 for build and test If we state Golang 1.8 we should test using that version as well * Use golang 1.8 only for single build to see if everything compiles * Change back edge also for commented out sqlite test
* Move build without gcc step up so that it's binary is not used in docker (#3147)Lauris BH2017-12-111-10/+10
|
* Restore make test target (#3139)Ethan Koenig2017-12-111-0/+10
| | | | | | * Restore make test target * make build -> go build
* Fix missing drone test on release/* (#3126)Lunny Xiao2017-12-091-0/+13
| | | | | | * fix missing drone test on release/* * remove test coverage on release/*
* use unique name for docs docker build step in CI (#3018)techknowlogick2017-11-291-2/+2
| | | Otherwise drone may combine the logs
* Fix master build for docs docker (#3004)techknowlogick2017-11-291-0/+2
|
* Import docs into main repository (#2874)techknowlogick2017-11-261-0/+31
| | | | | * import docs into main repository Signed-off-by: Matti Ranta <matti@mdranta.net>
* change the email and name to GitBot account. (#2848)Bo-Yi Wu2017-11-041-0/+2
| | | Signed-off-by: Bo-Yi Wu <appleboy.tw@gmail.com>
* Fix removing backslash before quotes in translations (#2831)Lauris BH2017-11-031-1/+1
|
* fix update-translations on drone (#2822)Lunny Xiao2017-11-011-0/+2
|
* Fix wrong translations (#2818)Lunny Xiao2017-11-011-0/+9
| | | | | | * fix wrong translations * fix tab on yml
* add gitea remote in drone. (#2817)Bo-Yi Wu2017-11-011-1/+1
| | | Signed-off-by: Bo-Yi Wu <appleboy.tw@gmail.com>
* add remote name for git push. (#2816)Bo-Yi Wu2017-11-011-3/+4
| | | Signed-off-by: Bo-Yi Wu <appleboy.tw@gmail.com>
* Download and pushing translations (#2727)Jonas Franz2017-11-011-10/+35
| | | | | | * Download and pushing translations * Adding empty line between build steps
* Fix translation upload to crowdin (#2599)Lauris BH2017-09-251-0/+1
|
* backport from v1.2 branch: add secrets for github release (#2588) (#2598)Bo-Yi Wu2017-09-251-0/+1
|
* Add pre-build step for nodejs stuff (#2581)Morlinest2017-09-251-3/+8
|
* Automatic update of translations (#2585)Jonas Franz2017-09-231-0/+11
| | | | | | | | | | | | * Adding build step for uploading translations * Fixing crowdin project name * Using crowdin plugin * Changing secret name * Adding pull: true
* Fix drone for tags (#2573)Lauris BH2017-09-221-3/+0
|
* Use standard lessc and minify CSS using Node.js (#2337)silverwind2017-09-211-0/+2
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | * Use standard lessc and minify CSS using Node.js This changes the previous nonstandard `lessc` to the official one and enables CSS minification via the clean-css module. To build CSS, Node.js is required along with a `npm install` to get the tools installed locally in node_modules so there is no dependency on binaries in PATH. Benefits include: - Allows one to have a standard lessc in PATH. - Can now use command line switches on lessc. - Minified CSS brings faster page load times and also has the benefit of discouraging contributors from editing CSS directly. To build CSS, Node.js is required along with a `npm install` to get the tools installed locally based on the information in `package.json`. The 'make stylesheet' task was modified to run without condition. This makes it easier to work on the make task itself without having to delete files. Also fixes: https://github.com/go-gitea/gitea/issues/2198 * install node, npm and modules on drone * .PHONY * use 'minify' to minify CSS
* Always run fmt check in CI (#2546)Ethan Koenig2017-09-211-0/+1
|
* Added bucket name to s3 drone plugin (#2505)Thomas Boerger2017-09-151-0/+3
|
* add codecov.io service. (#2493)Bo-Yi Wu2017-09-131-7/+48
| | | | | | | | | | | | | | | | | | | | | | * add codecov.io service. Signed-off-by: Bo-Yi Wu <appleboy.tw@gmail.com> * update Signed-off-by: Bo-Yi Wu <appleboy.tw@gmail.com> * only PR or master branch (for coverage badge) Signed-off-by: Bo-Yi Wu <appleboy.tw@gmail.com> * update Signed-off-by: Bo-Yi Wu <appleboy.tw@gmail.com> * update init Signed-off-by: Bo-Yi Wu <appleboy.tw@gmail.com>
* fix release (#2496)Lunny Xiao2017-09-131-3/+3
|
* Fix some tests : make coverage -> test (#2492)Antoine GIRARD2017-09-121-1/+1
| | | | | | | | * Fix test : make coverage -> test * Refactor integration tests to be able to run them in parallel * Add custom local repository temp path
* Hotfix for integration testing (#2473)Thomas Boerger2017-09-101-11/+12
| | | | | | * Hotfix for integration testing * Comment sqlite tests because of database locking issues
* Changes for latest DroneCI (#2362)Thomas Boerger2017-09-071-39/+40
|
* Revert "Changes for latest DroneCI (#2355)" (#2358)Bo-Yi Wu2017-08-221-39/+25
| | | This reverts commit faf4b503b24d33a2a0f455d26bb782345ab8e0c9.
* Changes for latest DroneCI (#2355)Thomas Boerger2017-08-221-25/+39
|
* ignore coverage steps. (#2257)Bo-Yi Wu2017-08-041-6/+6
| | | Signed-off-by: Bo-Yi Wu <appleboy.tw@gmail.com>
* Add verify changed less-file step to Makefile (#1861)Bo-Yi Wu2017-07-121-0/+1
|
* feat: upgrade drone docker image to support multi-stage build. (#1732)Bo-Yi Wu2017-07-111-0/+3
| | | | | | | | | | | | * feat: upgrade drone docker image to support multi-stage build. * update drone sig file. Signed-off-by: Bo-Yi Wu <appleboy.tw@gmail.com> * update drone sig file. Signed-off-by: Bo-Yi Wu <appleboy.tw@gmail.com>
* Skip sqlite integration in CI (#2058)Ethan Koenig2017-06-251-1/+1
|
* update drone discord plugin to 0.0.4 version (#1992)Bo-Yi Wu2017-06-171-1/+1
| | | | | | | | | | | | | | * update drone discord plugin to 0.0.3 version Signed-off-by: Bo-Yi Wu <appleboy.tw@gmail.com> * update to 0.0.4 Signed-off-by: Bo-Yi Wu <appleboy.tw@gmail.com> * update sig file. Signed-off-by: Bo-Yi Wu <appleboy.tw@gmail.com>