summaryrefslogtreecommitdiff
path: root/.gitlab-ci.yml
diff options
context:
space:
mode:
authorAndrew Dolgov <[email protected]>2019-12-08 09:44:05 +0300
committerAndrew Dolgov <[email protected]>2019-12-08 09:44:05 +0300
commit1aeeed930aba17a58bb085ed85b4497b5ced56da (patch)
treeaccdd3e52fa828f7af699f8a98a3934f6792508d /.gitlab-ci.yml
parentf4945b1ba174a9b509b3f0d5e17e9d0538b7b05b (diff)
remove a bunch of obsolete files
Diffstat (limited to '.gitlab-ci.yml')
-rw-r--r--.gitlab-ci.yml44
1 files changed, 0 insertions, 44 deletions
diff --git a/.gitlab-ci.yml b/.gitlab-ci.yml
deleted file mode 100644
index cd5ecb0d4..000000000
--- a/.gitlab-ci.yml
+++ /dev/null
@@ -1,44 +0,0 @@
-phpmd:
- image: php:5.6
- when: manual
- script:
- - sh utils/gitlab-ci/php-lint.sh
- - curl -o /usr/bin/phpmd -L http://static.phpmd.org/php/2.6.0/phpmd.phar
- - chmod +x /usr/bin/phpmd
- - sh utils/gitlab-ci/phpmd.sh
-
-schema:
- image: fox/selenium-ci
- when: manual
- script:
- - /etc/init.d/postgresql start
- - /usr/local/sbin/init-database.sh
- - sh ./utils/gitlab-ci/check-schema.sh
-
-phpunit_basic:
- image: fox/selenium-ci
- when: manual
- script:
- - /etc/init.d/postgresql start
- - /usr/local/sbin/init-database.sh
- - sh ./utils/gitlab-ci/check-schema.sh
- - cp utils/gitlab-ci/config-template.php config.php
- - su -s /bin/bash www-data -c "php ./update.php --debug-feed 1"
- - wget -O /usr/bin/phpunit https://phar.phpunit.de/phpunit-5.7.phar
- - chmod +x /usr/bin/phpunit
- - phpunit tests/*.php
-
-phpunit_functional:
- image: fox/selenium-ci
- when: manual
- script:
- - /etc/init.d/postgresql start
- - /etc/init.d/nginx start
- - /etc/init.d/php5-fpm start
- - /usr/local/sbin/init-database.sh
- - sh ./utils/gitlab-ci/check-schema.sh
- - ln -s `pwd` ../../tt-rss
- - cp utils/gitlab-ci/config-template.php config.php
- - chmod -R 777 cache lock feed-icons
- - /usr/local/sbin/init-selenium.sh
- - phpunit tests/functional/*.php