Skip to content

Commit

Permalink
Update containers to latest version
Browse files Browse the repository at this point in the history
Signed-off-by: Morris Jobke <[email protected]>
  • Loading branch information
MorrisJobke committed Nov 8, 2016
1 parent 8d7df51 commit baa1f91
Showing 1 changed file with 39 additions and 39 deletions.
78 changes: 39 additions & 39 deletions .drone.yml
Original file line number Diff line number Diff line change
Expand Up @@ -3,21 +3,21 @@ pipeline:
image: plugins/git
depth: 1
jsunit:
image: nextcloudci/jsunit:1.0.6
image: nextcloudci/jsunit:jsunit-5
commands:
- ./autotest-js.sh
when:
matrix:
TESTS: jsunit
check-autoloader:
image: nextcloudci/php7.0:php7.0-2
image: nextcloudci/php7.0:php7.0-6
commands:
- bash ./build/autoloaderchecker.sh
when:
matrix:
TESTS: check-autoloader
app-check-code:
image: nextcloudci/php7.0:php7.0-2
image: nextcloudci/php7.0:php7.0-6
commands:
- ./occ app:check-code admin_audit
- ./occ app:check-code comments
Expand All @@ -30,53 +30,53 @@ pipeline:
matrix:
TESTS: app-check-code
signed-off-check:
image: nextcloudci/php7.0:php7.0-2
image: nextcloudci/php7.0:php7.0-6
commands:
- php ./build/signed-off-checker.php
when:
matrix:
TESTS: signed-off-check
htaccess-checker:
image: nextcloudci/php7.0:php7.0-2
image: nextcloudci/php7.0:php7.0-6
commands:
- php ./build/htaccess-checker.php
when:
matrix:
TESTS: htaccess-checker
syntax-php5.6:
image: nextcloudci/php5.6:php5.6-2
image: nextcloudci/php5.6:php5.6-7
commands:
- composer install
- ./lib/composer/bin/parallel-lint --exclude lib/composer/jakub-onderka/ --exclude 3rdparty/symfony/polyfill-php70/Resources/stubs/ --exclude 3rdparty/patchwork/utf8/src/Patchwork/Utf8/Bootup/ --exclude 3rdparty/paragonie/random_compat/lib/ --exclude lib/composer/composer/autoload_static.php --exclude 3rdparty/composer/autoload_static.php .
when:
matrix:
TESTS: syntax-php5.6
syntax-php7.0:
image: nextcloudci/php7.0:php7.0-2
image: nextcloudci/php7.0:php7.0-6
commands:
- composer install
- ./lib/composer/bin/parallel-lint --exclude lib/composer/jakub-onderka/ --exclude 3rdparty/symfony/polyfill-php70/Resources/stubs/ --exclude 3rdparty/patchwork/utf8/src/Patchwork/Utf8/Bootup/ --exclude 3rdparty/paragonie/random_compat/lib/ --exclude lib/composer/composer/autoload_static.php --exclude 3rdparty/composer/autoload_static.php .
when:
matrix:
TESTS: syntax-php7.0
litmus-v1:
image: nextcloudci/litmus-php7.0:litmus-php7.0-2
image: nextcloudci/litmus-php7.0:litmus-php7.0-3
commands:
- bash tests/travis/install.sh sqlite
- bash apps/dav/tests/travis/litmus-v1/script.sh
when:
matrix:
TESTS: litmus-v1
litmus-v2:
image: nextcloudci/litmus-php7.0:litmus-php7.0-2
image: nextcloudci/litmus-php7.0:litmus-php7.0-3
commands:
- bash tests/travis/install.sh sqlite
- bash apps/dav/tests/travis/litmus-v2/script.sh
when:
matrix:
TESTS: litmus-v2
caldavtester:
image: nextcloudci/litmus-php7.0:litmus-php7.0-2
image: nextcloudci/litmus-php7.0:litmus-php7.0-3
commands:
- bash tests/travis/install.sh sqlite
- bash apps/dav/tests/travis/caldav/install.sh
Expand All @@ -85,7 +85,7 @@ pipeline:
matrix:
TESTS: caldavtester
carddavtester:
image: nextcloudci/litmus-php7.0:litmus-php7.0-2
image: nextcloudci/litmus-php7.0:litmus-php7.0-3
commands:
- bash tests/travis/install.sh sqlite
- bash apps/dav/tests/travis/carddav/install.sh
Expand All @@ -94,63 +94,63 @@ pipeline:
matrix:
TESTS: carddavtester
nodb-php5.6:
image: nextcloudci/php5.6:php5.6-2
image: nextcloudci/php5.6:php5.6-7
commands:
- NOCOVERAGE=true TEST_SELECTION=NODB ./autotest.sh sqlite
when:
matrix:
DB: NODB
PHP: 5.6
nodb-php7.0:
image: nextcloudci/php7.0:php7.0-2
image: nextcloudci/php7.0:php7.0-6
commands:
- NOCOVERAGE=true TEST_SELECTION=NODB ./autotest.sh sqlite
when:
matrix:
DB: NODB
PHP: "7.0"
nodb-php7.1:
image: nextcloudci/php7.1:php7.1-8
image: nextcloudci/php7.1:php7.1-9
commands:
- NOCOVERAGE=true TEST_SELECTION=NODB ./autotest.sh sqlite
when:
matrix:
DB: NODB
PHP: 7.1
sqlite-php5.6:
image: nextcloudci/php5.6:php5.6-2
image: nextcloudci/php5.6:php5.6-7
commands:
- NOCOVERAGE=true TEST_SELECTION=DB ./autotest.sh sqlite
when:
matrix:
DB: sqlite
PHP: 5.6
sqlite-php7.0:
image: nextcloudci/php7.0:php7.0-2
image: nextcloudci/php7.0:php7.0-6
commands:
- NOCOVERAGE=true TEST_SELECTION=DB ./autotest.sh sqlite
when:
matrix:
DB: sqlite
PHP: "7.0"
sqlite-php7.1:
image: nextcloudci/php7.1:php7.1-8
image: nextcloudci/php7.1:php7.1-9
commands:
- NOCOVERAGE=true TEST_SELECTION=DB ./autotest.sh sqlite
when:
matrix:
DB: sqlite
PHP: 7.1
mysql-php5.6:
image: nextcloudci/php5.6:php5.6-2
image: nextcloudci/php5.6:php5.6-7
commands:
- NOCOVERAGE=true TEST_SELECTION=DB ./autotest.sh mysql
when:
matrix:
DB: mysql
PHP: 5.6
postgres-php5.6:
image: nextcloudci/php5.6:php5.6-2
image: nextcloudci/php5.6:php5.6-7
commands:
- sleep 10 # gives the database enough time to initialize
- NOCOVERAGE=true TEST_SELECTION=DB ./autotest.sh pgsql
Expand All @@ -159,15 +159,15 @@ pipeline:
DB: postgres
PHP: 5.6
mysqlmb4-php5.6:
image: nextcloudci/php5.6:php5.6-2
image: nextcloudci/php5.6:php5.6-7
commands:
- NOCOVERAGE=true TEST_SELECTION=DB ./autotest.sh mysqlmb4
when:
matrix:
DB: mysqlmb4
PHP: 5.6
integration-capabilities_features:
image: nextcloudci/integration-php7.0:integration-php7.0-1
image: nextcloudci/integration-php7.0:integration-php7.0-2
commands:
- ./occ maintenance:install --admin-pass=admin
- cd build/integration
Expand All @@ -176,7 +176,7 @@ pipeline:
matrix:
TESTS: integration-capabilities_features
integration-federation_features:
image: nextcloudci/integration-php7.0:integration-php7.0-1
image: nextcloudci/integration-php7.0:integration-php7.0-2
commands:
- ./occ maintenance:install --admin-pass=admin
- cd build/integration
Expand All @@ -185,7 +185,7 @@ pipeline:
matrix:
TESTS: integration-federation_features
integration-auth:
image: nextcloudci/integration-php7.0:integration-php7.0-1
image: nextcloudci/integration-php7.0:integration-php7.0-2
commands:
- ./occ maintenance:install --admin-pass=admin
- cd build/integration
Expand All @@ -194,7 +194,7 @@ pipeline:
matrix:
TESTS: integration-auth
integration-carddav:
image: nextcloudci/integration-php7.0:integration-php7.0-1
image: nextcloudci/integration-php7.0:integration-php7.0-2
commands:
- ./occ maintenance:install --admin-pass=admin
- cd build/integration
Expand All @@ -203,7 +203,7 @@ pipeline:
matrix:
TESTS: integration-carddav
integration-dav-v2:
image: nextcloudci/integration-php7.0:integration-php7.0-1
image: nextcloudci/integration-php7.0:integration-php7.0-2
commands:
- ./occ maintenance:install --admin-pass=admin
- cd build/integration
Expand All @@ -212,7 +212,7 @@ pipeline:
matrix:
TESTS: integration-dav-v2
integration-ocs-v1:
image: nextcloudci/integration-php7.0:integration-php7.0-1
image: nextcloudci/integration-php7.0:integration-php7.0-2
commands:
- ./occ maintenance:install --admin-pass=admin
- cd build/integration
Expand All @@ -221,7 +221,7 @@ pipeline:
matrix:
TESTS: integration-ocs-v1
integration-sharing-v1:
image: nextcloudci/integration-php7.0:integration-php7.0-1
image: nextcloudci/integration-php7.0:integration-php7.0-2
commands:
- ./occ maintenance:install --admin-pass=admin
- cd build/integration
Expand All @@ -230,7 +230,7 @@ pipeline:
matrix:
TESTS: integration-sharing-v1
integration-checksums-v1:
image: nextcloudci/integration-php7.0:integration-php7.0-1
image: nextcloudci/integration-php7.0:integration-php7.0-2
commands:
- ./occ maintenance:install --admin-pass=admin
- cd build/integration
Expand All @@ -239,7 +239,7 @@ pipeline:
matrix:
TESTS: integration-checksums
integration-external-storage:
image: nextcloudci/integration-php7.0:integration-php7.0-1
image: nextcloudci/integration-php7.0:integration-php7.0-2
commands:
- ./occ maintenance:install --admin-pass=admin
- cd build/integration
Expand All @@ -248,7 +248,7 @@ pipeline:
matrix:
TESTS: integration-external-storage
integration-provisioning-v1:
image: nextcloudci/integration-php7.0:integration-php7.0-1
image: nextcloudci/integration-php7.0:integration-php7.0-2
commands:
- ./occ maintenance:install --admin-pass=admin
- cd build/integration
Expand All @@ -257,7 +257,7 @@ pipeline:
matrix:
TESTS: integration-provisioning-v1
integration-tags:
image: nextcloudci/integration-php7.0:integration-php7.0-1
image: nextcloudci/integration-php7.0:integration-php7.0-2
commands:
- ./occ maintenance:install --admin-pass=admin
- cd build/integration
Expand All @@ -266,7 +266,7 @@ pipeline:
matrix:
TESTS: integration-tags
integration-caldav:
image: nextcloudci/integration-php7.0:integration-php7.0-1
image: nextcloudci/integration-php7.0:integration-php7.0-2
commands:
- ./occ maintenance:install --admin-pass=admin
- cd build/integration
Expand All @@ -275,7 +275,7 @@ pipeline:
matrix:
TESTS: integration-caldav
integration-comments:
image: nextcloudci/integration-php7.0:integration-php7.0-1
image: nextcloudci/integration-php7.0:integration-php7.0-2
commands:
- ./occ maintenance:install --admin-pass=admin
- cd build/integration
Expand All @@ -284,7 +284,7 @@ pipeline:
matrix:
TESTS: integration-comments
integration-favorites:
image: nextcloudci/integration-php7.0:integration-php7.0-1
image: nextcloudci/integration-php7.0:integration-php7.0-2
commands:
- ./occ maintenance:install --admin-pass=admin
- cd build/integration
Expand All @@ -293,7 +293,7 @@ pipeline:
matrix:
TESTS: integration-favorites
integration-provisioning-v2:
image: nextcloudci/integration-php7.0:integration-php7.0-1
image: nextcloudci/integration-php7.0:integration-php7.0-2
commands:
- ./occ maintenance:install --admin-pass=admin
- cd build/integration
Expand All @@ -302,7 +302,7 @@ pipeline:
matrix:
TESTS: integration-provisioning-v2
integration-webdav-related:
image: nextcloudci/integration-php7.0:integration-php7.0-1
image: nextcloudci/integration-php7.0:integration-php7.0-2
commands:
- ./occ maintenance:install --admin-pass=admin
- cd build/integration
Expand All @@ -311,7 +311,7 @@ pipeline:
matrix:
TESTS: integration-webdav-related
integration-sharees-features:
image: nextcloudci/integration-php7.0:integration-php7.0-1
image: nextcloudci/integration-php7.0:integration-php7.0-2
commands:
- ./occ maintenance:install --admin-pass=admin
- cd build/integration
Expand All @@ -320,7 +320,7 @@ pipeline:
matrix:
TESTS: integration-sharees-features
nodb-codecov:
image: nextcloudci/php7.0:php7.0-2
image: nextcloudci/php7.0:php7.0-6
commands:
- TEST_SELECTION=NODB ./autotest.sh sqlite
- wget https://codecov.io/bash -O codecov.sh
Expand All @@ -330,7 +330,7 @@ pipeline:
matrix:
TESTS: nodb-codecov
db-codecov:
image: nextcloudci/php7.0:php7.0-2
image: nextcloudci/php7.0:php7.0-6
commands:
- TEST_SELECTION=QUICKDB ./autotest.sh sqlite
- wget https://codecov.io/bash -O codecov.sh
Expand Down

0 comments on commit baa1f91

Please sign in to comment.