This repository was archived by the owner on Mar 5, 2025. It is now read-only.
Commit 7f01c28 1 parent 97d88fe commit 7f01c28 Copy full SHA for 7f01c28
File tree 6 files changed +10
-6
lines changed
6 files changed +10
-6
lines changed Original file line number Diff line number Diff line change 17
17
</phingcall >
18
18
</target >
19
19
20
+ <target name =" ci:pipelines:init" description =" Initializes default Acquia Pipelines configuration for this project." >
21
+ <copy file =" ${blt.root}/scripts/pipelines/acquia-pipelines.yml" tofile =" ${repo.root}/acquia-pipelines.yml" />
22
+ </target >
23
+
24
+ <target name =" ci:travis:init" description =" Initializes default Travis CI configuration for this project." >
25
+ <copy file =" ${blt.root}/scripts/travis/.travis.yml" tofile =" ${repo.root}/.travis.yml" />
26
+ </target >
27
+
20
28
<target name =" ci:tugboat:init" description =" Initializes default tugboat configuration for this project." >
21
29
<copy file =" ${blt.root}/scripts/tugboat/Makefile" tofile =" ${repo.root}/Makefile" />
22
30
<copy file =" ${blt.root}/scripts/tugboat/tugboat.drushrc.aliases.php" todir =" ${repo.root}/drush/site-aliases" >
Original file line number Diff line number Diff line change @@ -51,7 +51,6 @@ if [[ $REPLY =~ ^[Yy]$ ]]; then
51
51
echo " Installing blt alias"
52
52
yes | ./vendor/acquia/blt/blt.sh install-alias
53
53
./vendor/acquia/blt/blt.sh init
54
- ./vendor/acquia/blt/blt.sh configure
55
54
composer update
56
55
57
56
echo " Update complete. Please do the following:"
Original file line number Diff line number Diff line change 1
1
# These files from template dir will be included if they do not yet exist. They will not overwrite
2
2
# existing files.
3
+ .gitattributes
3
4
project.yml
4
5
composer.json
5
6
README.md
File renamed without changes.
Original file line number Diff line number Diff line change @@ -56,7 +56,7 @@ before_script:
56
56
# Clear drush release history cache, to pick up new releases.
57
57
- rm -f ~/.drush/cache/download/*---updates.drupal.org-release-history-*
58
58
# Verify that no git diffs (caused by line ending variation) exist.
59
- - git diff --exit-code
59
+ # - git diff --exit-code
60
60
# The local.hostname must be set to 127.0.0.1:8888 because we are using drush runserver to run the site on Travis CI.
61
61
- drupal yaml:update:value project.yml project.local.hostname '127.0.0.1:8888'
62
62
Original file line number Diff line number Diff line change @@ -23,10 +23,6 @@ public function testBltCreate() {
23
23
$ this ->assertFileNotExists ($ this ->newProjectDir . '/install ' );
24
24
$ this ->assertFileNotExists ($ this ->newProjectDir . '/tests/phpunit/BltTest.php ' );
25
25
$ this ->assertFileExists ($ this ->newProjectDir . '/vendor ' );
26
- $ this ->assertNotContains (
27
- 'pt:self-test ' ,
28
- file_get_contents ($ this ->newProjectDir . '/.travis.yml ' )
29
- );
30
26
$ this ->assertFileNotExists ($ this ->newProjectDir . '/build/tasks/blt.xml ' );
31
27
$ this ->assertNotContains (
32
28
'${project.machine_name} ' ,
You can’t perform that action at this time.
0 commit comments