You are here

install.sh in Acquia Cloud Site Factory Connector 8

Same filename and directory in other branches
  1. 8.2 tests/travis/install.sh
#!/usr/bin/env bash

# NAME
#     install.sh - Install Travis CI dependencies
#
# SYNOPSIS
#     install.sh
#
# DESCRIPTION
#     Creates the test fixture. Hints for ACSF devs on why this is necessary;
#     https://github.com/acquia/orca/blob/develop/docs/faq.md

cd "$(dirname "$0")"

# Reuse ORCA's own includes.
source ../../../orca/bin/travis/_includes.sh

# Exit early in the absence of a fixture.
[[ -d "$ORCA_FIXTURE_DIR" ]] || exit 0

composer -d"$ORCA_FIXTURE_DIR" require mockery/mockery:^1.2

File

tests/travis/install.sh
View source
  1. #!/usr/bin/env bash
  2. # NAME
  3. # install.sh - Install Travis CI dependencies
  4. #
  5. # SYNOPSIS
  6. # install.sh
  7. #
  8. # DESCRIPTION
  9. # Creates the test fixture. Hints for ACSF devs on why this is necessary;
  10. # https://github.com/acquia/orca/blob/develop/docs/faq.md
  11. cd "$(dirname "$0")"
  12. # Reuse ORCA's own includes.
  13. source ../../../orca/bin/travis/_includes.sh
  14. # Exit early in the absence of a fixture.
  15. [[ -d "$ORCA_FIXTURE_DIR" ]] || exit 0
  16. composer -d"$ORCA_FIXTURE_DIR" require mockery/mockery:^1.2