@@ -76,6 +76,22 @@ commands:
76
76
- run :
77
77
name : Keyscan GitHub hostname
78
78
command : mkdir -p ~/.ssh && ssh-keyscan -H github.com >> ~/.ssh/known_hosts
79
+ update_robots_dot_txt :
80
+ description : " Apply custom config to robots.txt file"
81
+ steps :
82
+ - run :
83
+ name : Update robots file
84
+ command : |
85
+ cd /home/circleci/project/web
86
+ cp -f robots_nidirect.txt robots.txt
87
+ rename_healthcheck_file :
88
+ description : " Renames the healthcheck.php file with a uuid to prevent filename guessing"
89
+ steps :
90
+ - run :
91
+ name : Rename healthcheck file
92
+ command : |
93
+ cd /home/circleci/project/web
94
+ mv -f healthcheck.php hc_$HEALTHCHECK_ID.php
79
95
80
96
jobs :
81
97
# Tests the integrity of the build, stores the results in a workspace for re-use in later jobs.
86
102
- checkout_code
87
103
- install_php_os_extensions
88
104
- composer_tasks
105
+ - update_robots_dot_txt
106
+ - rename_healthcheck_file
89
107
- persist_to_workspace :
90
108
root : ./
91
109
paths :
@@ -107,6 +125,7 @@ jobs:
107
125
composer require dof-dss/nidirect-site-modules:dev-development dof-dss/nidirect-migrations:dev-development \
108
126
dof-dss/nidirect-d8-test-install-profile:dev-development dof-dss/nicsdru_origins_theme:dev-development \
109
127
dof-dss/nicsdru_origins_modules:dev-development dof-dss/nicsdru_nidirect_theme:dev-development
128
+ - update_robots_dot_txt
110
129
- persist_to_workspace :
111
130
root : ./
112
131
paths :
@@ -339,6 +358,12 @@ jobs:
339
358
name : Set GAC state variable
340
359
command : |
341
360
/home/circleci/.platformsh/bin/platform environment:drush "sset google_analytics_counter.access_token ${GAC_ACCESS_TOKEN}" -p $PLATFORM_PROJECT_ID -e $EDGE_BUILD_BRANCH
361
+ - run :
362
+ name : Enable test user accounts
363
+ command : |
364
+ for username in nw_test_admin nw_test_apps nw_test_authenticated nw_test_author nw_test_editor nw_test_gp_author nw_test_gp_super nw_test_news_super nw_test_super; do
365
+ /home/circleci/.platformsh/bin/platform environment:drush user:unblock $username
366
+ done
342
367
- run :
343
368
name : Force purge of Solr index
344
369
command : /home/circleci/.platformsh/bin/platform ssh -p $PLATFORM_PROJECT_ID -e $EDGE_BUILD_BRANCH "curl http://${PLATFORM_SOLR_HOST}/solr/default/update --data '<delete><query>*:*</query></delete>' -H 'Content-type:text/xml; charset=utf-8' && curl http://${PLATFORM_SOLR_HOST}/solr/default/update --data '<commit/>' -H 'Content-type:text/xml; charset=utf-8'"
0 commit comments