Skip to content

v1.2.0

Compare
Choose a tag to compare
@TravisCarden TravisCarden released this 09 Dec 19:33
· 1047 commits to develop since this release

Note: Add the following to your .travis.yml to enable Travis CI build config validation (example):

version: ~> 1.0

Also make the following update to your .travis.yml to change to the new preferred method of installing ORCA which adds support for semantic version numbers.

--- a/.travis.yml
+++ b/.travis.yml
@@ -21,10 +21,11 @@ env:
   global:
     - ORCA_SUT_NAME=drupal/example
     - ORCA_SUT_BRANCH=8.x-1.x
-    # Specify the version of ORCA to use. Use the master branch for the latest
-    # release, develop for Dev/HEAD, or a tag name (e.g., v1.0.0) for a specific
-    # release.
-    - ORCA_VERSION=master
+    # Specify the version of ORCA to use. Use dev-master to track the latest
+    # release, dev-develop to track Dev/HEAD, or any other Composer version
+    # string.
+    # @see https://getcomposer.org/doc/articles/versions.md
+    - ORCA_VERSION=dev-master

 jobs:
   fast_finish: true
@@ -45,7 +46,7 @@ jobs:
     - { php: "7.3", env: ORCA_JOB=D9_READINESS }

 before_install:
-  - git clone [email protected]:acquia/orca.git "${PARENT_DIR}/orca"
+  - composer create-project --no-dev acquia/orca ../orca "$ORCA_VERSION"
   - ../orca/bin/travis/before_install.sh

 install: ../orca/bin/travis/install.sh