Skip to content

Commit

Permalink
Merge pull request #325 from nextcloud/stable9-fix-naming-issue-drone
Browse files Browse the repository at this point in the history
[stable9] Fix docker image naming issue for CI
  • Loading branch information
LukasReschke committed Jul 6, 2016
2 parents 6d9809e + 024919b commit ca1296c
Showing 1 changed file with 11 additions and 10 deletions.
21 changes: 11 additions & 10 deletions .drone.yml
Original file line number Diff line number Diff line change
@@ -1,29 +1,30 @@
build:
integration:
image: morrisjobke/nextcloud-ci-php7:1.0.3
commands:
- git submodule update --init
- ./occ maintenance:install --admin-pass=admin
- cd build/integration
- ./run.sh
jsunit:
image: morrisjobke/nextcloud-ci-jsunit:1.0.2
image: nextcloudci/jsunit:1.0.6
commands:
- ./autotest-js.sh
sqlite:
image: morrisjobke/nextcloud-ci-php7:1.0
image: nextcloudci/php5.6:1.0.6
commands:
- rm -rf data/* config/config.php # TODO: remove this - temporary fix for CI issues
- git submodule update --init
- ./occ maintenance:install --database-name oc_autotest --database-user oc_autotest --admin-user admin --admin-pass admin --database sqlite --database-pass=''
- ./autotest.sh sqlite
postgres:
image: morrisjobke/nextcloud-ci-php7:1.0
image: nextcloudci/php5.6:1.0.6
commands:
- sleep 10 # gives the database enough time to initialize
- rm -rf data/* config/config.php # TODO: remove this - temporary fix for CI issues
- git submodule update --init
- ./autotest.sh pgsql
integration:
image: nextcloudci/php5.6:1.0.6
commands:
- rm -rf data/* config/config.php # TODO: remove this - temporary fix for CI issues
- git submodule update --init
- ./occ maintenance:install --admin-pass=admin
- cd build/integration
- ./run.sh

compose:
cache:
Expand Down

0 comments on commit ca1296c

Please sign in to comment.