Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

build:validate:test is deprecated. #114

Merged
merged 1 commit into from
Jun 7, 2016
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
8 changes: 4 additions & 4 deletions template/build/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -43,12 +43,12 @@ Automated testing of live content is easy to set up with two simple steps:
ssh_known_hosts:
- staging-12345.prod.hosting.acquia.com
```
2. Override the default `build:validate:test` target by adding the following to `build/custom/phing/build.xml`:
2. Override the default `ci:build:validate:test` target by adding the following to `build/custom/phing/build.xml`:

```
<!-- Override the core build:validate:test target to include a local refresh-->
<target name="build:validate:test" description="Builds, validates, tests, and deploys an artifact."
depends="validate:all, setup, tests:security-updates, tests:phpunit, local:sync, local:update, tests:behat" />
<!-- Override the core ci:build:validate:test target to include a local refresh-->
<target name="ci:build:validate:test" description="Builds, validates, tests, and deploys an artifact."
depends="validate:all, ci:setup, tests:security-updates, tests:phpunit, local:sync, local:update, tests:behat" />
```

### Setting Up Travis CI for automated deployments
Expand Down
14 changes: 0 additions & 14 deletions template/build/core/phing/build.xml
Original file line number Diff line number Diff line change
Expand Up @@ -50,20 +50,6 @@
<!-- Contains acsf tasks. -->
<import file="${core.phing.dir}/tasks/acsf.xml"/>

<!--
The follow targets are intended to be wrapper targets that bundle
multiple targets from other includes.
-->
<target name="build:test"
description="Builds, tests, and deploys an artifact."
depends="setup, tests:all">
</target>

<target name="build:validate:test"
description="Builds, validates, tests, and deploys an artifact."
depends="validate:all, setup, tests:all">
</target>

<target name="list" hidden="true">
<exec dir="${repo.root}" command="./blt.sh -q -l" passthru="true"/>
</target>
Expand Down