Compare commits

...
This repository has been archived on 2024-04-08. You can view files and clone it, but cannot push or open issues or pull requests.

6 Commits
master ... test

Author SHA1 Message Date
Deon George
e8a5e042dd Added gitlab runner configuration 2016-06-02 12:07:28 +10:00
Deon George
dd2d6da3f3 Testing gitlab runner configuration 2016-06-02 12:05:52 +10:00
Deon George
e65bf3aa88 Added gitlab runner configuration 2016-06-02 11:15:38 +10:00
Deon George
ede63bea4c Added gitlab runner configuration 2016-05-29 21:48:48 +10:00
Deon George
46f57fe378 Added gitlab runner configuration 2016-05-29 21:20:42 +10:00
Deon George
83aa81f0c3 Added gitlab runner configuration 2016-05-27 22:32:42 +10:00
2 changed files with 44 additions and 1 deletions

43
.gitlab-ci.yml Normal file
View File

@ -0,0 +1,43 @@
services:
- centos/mariadb:latest
variables:
MYSQL_ROOT_PASSWORD: root
MYSQL_USER: user
MYSQL_PASSWORD: password
MYSQL_DATABASE: homestead
before_script:
# Install dependencies
- git submodule update --init --recursive
- echo "Load sample DB"
# We test PHP5.6
test:5.5:
image: leenooks/php:5.5
script:
- phpunit --bootstrap=includes/kohana/modules/unittest/bootstrap.php --exclude-group kohana --colors --verbose $@ includes/kohana/modules/unittest/tests.php
only:
- test
tags:
- php
# We test PHP5.6 (good luck with that)
#test:5.6:
# image: php:5.6
# script:
# - phpunit --bootstrap=includes/kohana/modules/unittest/bootstrap.php --exclude-group kohana --colors --verbose $@ includes/kohana/modules/unittest/tests.php --site=test
# only:
# - test
# tags:
# - php
# We test PHP7.0 (good luck with that)
#test:7.0:
# image: php:7.0
# script:
# - phpunit --bootstrap=includes/kohana/modules/unittest/bootstrap.php --exclude-group kohana --colors --verbose $@ includes/kohana/modules/unittest/tests.php --site=test
# only:
# - test
# tags:
# - php

@ -1 +1 @@
Subproject commit 6a33249a95ea484dd60470edc3b38f85ff5e1340
Subproject commit 8f659c50c675c427e60a103a19fd3415d0cbbd07