Skip to content

Commit

Permalink
Merge pull request #74 from palantirnet/circle-2.0
Browse files Browse the repository at this point in the history
Circle 2.0
  • Loading branch information
becw authored Apr 16, 2018
2 parents 6d22b5e + 3c32adc commit a0d7026
Show file tree
Hide file tree
Showing 4 changed files with 126 additions and 64 deletions.
121 changes: 121 additions & 0 deletions .circleci/config.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,121 @@
# This circle.yml is for testing the drupal-skeleton. For project-specific
# testing, use the circle.yml installed by palantirnet/the-build.

version: 2
jobs:
build:
working_directory: ~/drupal-skeleton
docker:
- image: circleci/php:7.1-node-browsers
- image: tkuchiki/delayed-mysql
environment:
MYSQL_ALLOW_EMPTY_PASSWORD: yes
MYSQL_ROOT_PASSWORD: ''
MYSQL_DATABASE: circle_test

environment:
- PALANTIR_ENVIRONMENT: circle

steps:
- run:
name: Install packages
command: sudo apt-get install -y libpng-dev mysql-client
- run:
name: Install PHP extensions
command: sudo docker-php-ext-install pdo_mysql gd
- run:
name: Configure PHP
command: echo "sendmail_path=/bin/true" | sudo tee -a "/usr/local/etc/php/php.ini"
- run:
name: PHP version
command: php -r 'phpinfo(INFO_GENERAL | INFO_CREDITS | INFO_CONFIGURATION | INFO_MODULES);'
- run:
name: Composer version
command: composer --version
- run:
name: Create artifacts directory
command: mkdir /tmp/artifacts
- run:
name: Configure URL in /etc/hosts
command: echo 127.0.0.1 ${CIRCLE_PROJECT_REPONAME}.local | sudo tee -a /etc/hosts

# Composer package cache
- restore_cache:
keys:
- composer-v1-
# Source cache
- restore_cache:
keys:
- source-v1-{{ .Branch }}
- source-v1-
# Composer dependency cache
- restore_cache:
keys:
- dependencies-v1-{{ .Branch }}-

- checkout
- run:
name: Composer install / update
command: composer update --no-interaction --prefer-dist

# Composer package cache - update when the contents of the Composer cache directory
# change
- run: ls -1R ~/.composer/cache/ > /tmp/composer-cache.txt
- save_cache:
key: composer-v1-{{ checksum "/tmp/composer-cache.txt" }}
paths:
- ~/.composer
# Source cache - update when branch changes
- save_cache:
key: source-v1-{{ .Branch }}
paths:
- ".git"
# Composer dependency cache - update for every commit, because when this cache gets
# polluted, builds will repeatedly fail. For this project,
# the entire web/ directory is set up by the composer install process.
- save_cache:
key: dependencies-v1-{{ .Branch }}-{{ .Revision }}
paths:
- composer.lock
- vendor
- web
- drush

- run:
name: Wait for DB
# Dockerize is preinstalled in circleci/* docker image
command: dockerize -wait tcp://127.0.0.1:3306 -timeout 120s
- run:
name: Install and configure the-build
command: >
vendor/bin/phing -f vendor/palantirnet/the-build/tasks/install.xml
-Dbuild.artifact_mode=symlink
-Dbuild.test_output=/dev/null
-Ddrupal.site_name=drupal-skeleton
-Ddrupal.profile=standard
-Ddrupal.modules_enable=''
-Ddrupal.database.database=circle_test
-Ddrupal.database.username=root
-Ddrupal.database.password=''
-Ddrupal.database.host=127.0.0.1
-Ddrupal.settings.file_public_path=sites/default/files
-Ddrupal.settings.file_private_path=
-Ddrupal.twig.debug=false
-Ddrupal.uri=http://${CIRCLE_PROJECT_REPONAME}.local:8000
-Ddrupal.hash_salt=temporary
-Ddrupal.root=web
- run:
name: Build Drupal's settings.php
command: vendor/bin/phing build
- run:
name: Install Drupal
command: vendor/bin/phing install
- run:
name: Run Behat tests
command: |
nohup php -S ${CIRCLE_PROJECT_REPONAME}.local:8000 -t $(pwd)/web/ > /tmp/artifacts/phpd.log 2>&1 &
vendor/bin/behat --profile=circle --suite=default --strict --format=junit --out=/tmp/artifacts
- store_artifacts:
path: /tmp/artifacts
- store_test_results:
path: /tmp/artifacts
4 changes: 2 additions & 2 deletions behat.yml
Original file line number Diff line number Diff line change
Expand Up @@ -30,7 +30,7 @@ default:
region_map:
anywhere: "*"

circleci:
circle:
extensions:
Behat\MinkExtension:
base_url: http://localhost:8000
base_url: http://drupal-skeleton.local:8000
59 changes: 0 additions & 59 deletions circle.yml

This file was deleted.

6 changes: 3 additions & 3 deletions composer.json
Original file line number Diff line number Diff line change
Expand Up @@ -30,7 +30,7 @@
"composer/installers": "^1.0",
"drupal-composer/drupal-scaffold": "^2.3",
"drupal/coder": "^8.0",
"drupal/config_installer": "^1.5",
"drupal/config_installer": "^1.7",
"drupal/core": "^8.5"
},
"require-dev": {
Expand All @@ -39,8 +39,8 @@
"behat/mink-extension": "^2.2",
"behat/mink-goutte-driver": "^1.2",
"drupal/drupal-extension": "^3.1",
"palantirnet/the-build": "^1.5",
"palantirnet/the-vagrant": "^2.0"
"palantirnet/the-build": "^1.7",
"palantirnet/the-vagrant": "^2.0.1"
},
"suggest": {
"cweagans/composer-patches": "Try ^1.0. Apply patches to packages, especially Drupal.org contrib."
Expand Down

0 comments on commit a0d7026

Please sign in to comment.