aboutsummaryrefslogtreecommitdiffstats
path: root/.gitlab-ci.yml
diff options
context:
space:
mode:
authorMario Vavti <mario@mariovavti.com>2018-10-10 20:15:35 +0200
committerMario Vavti <mario@mariovavti.com>2018-10-10 20:15:35 +0200
commitba50de15eac113a47ab2d4e247ebd6673c415684 (patch)
tree93c5a60ccc0772a253abf9bc26adaf8c50fc33b2 /.gitlab-ci.yml
parentf105f70dedd83b317f917d9dbaec718b0730793e (diff)
downloadvolse-hubzilla-ba50de15eac113a47ab2d4e247ebd6673c415684.tar.gz
volse-hubzilla-ba50de15eac113a47ab2d4e247ebd6673c415684.tar.bz2
volse-hubzilla-ba50de15eac113a47ab2d4e247ebd6673c415684.zip
revert gitlab-ci until we have a working configuration
Diffstat (limited to '.gitlab-ci.yml')
-rw-r--r--.gitlab-ci.yml41
1 files changed, 0 insertions, 41 deletions
diff --git a/.gitlab-ci.yml b/.gitlab-ci.yml
deleted file mode 100644
index 354d53430..000000000
--- a/.gitlab-ci.yml
+++ /dev/null
@@ -1,41 +0,0 @@
-# Select image from https://hub.docker.com/_/php/
-image: php:7.1
-
-# Select what we should cache
-cache:
- paths:
- - vendor/
-
-before_script:
-# Install git, the php image doesn't have installed
-- apt-get update -yqq
-- apt-get install git -yqq
-
-# Install php-gd
-- apt-get install libfreetype6-dev libjpeg62-turbo-dev libpng-dev -yqq
-- docker-php-ext-configure gd --with-freetype-dir=/usr/include/ --with-jpeg-dir=/usr/include/
-- docker-php-ext-install -j$(nproc) gd
-
-# Install mysql driver
-- docker-php-ext-install pdo_mysql
-
-# Install composer
-- curl -sS https://getcomposer.org/installer | php
-
-# Install all project dependencies
-- php composer.phar install
-
-services:
-- mysql
-
-variables:
- # Configure mysql service (https://hub.docker.com/_/mysql/)
- MYSQL_DATABASE: hello_world_test
- MYSQL_ROOT_PASSWORD: mysql
-
-# We test PHP7 (the default) with MySQL
-test:mysql:
- script:
- - vendor/bin/phpunit --configuration phpunit_mysql.xml --coverage-text
-
-