Skip to content
This repository has been archived by the owner on Aug 8, 2024. It is now read-only.

Commit

Permalink
Merge pull request #50 from pantheon-systems/terminus-vars
Browse files Browse the repository at this point in the history
Moving terminus vars out of circle.yml
  • Loading branch information
stevector authored Jan 25, 2017
2 parents 970f3bf + 4422de2 commit 9570a4b
Showing 1 changed file with 23 additions and 3 deletions.
26 changes: 23 additions & 3 deletions circle.yml
Original file line number Diff line number Diff line change
Expand Up @@ -6,9 +6,29 @@ machine:
# https://circleci.com/docs/build-image-trusty/#php
version: 7.0.11
environment:
TEST_SITE_NAME: Example D8 Composer Test Site
ADMIN_EMAIL: admin@example.com
TERMINUS_SITE: ci-example-d8-composer
# This repository requires environmental variables that are likely to change
# as it is copied for different websites. Those variables can be defined
# in the CircleCI UI which can keep the values of variables hidden.
# That functionality is important for variables like these:
### The password to be used for Drupal's user 1 account.
# ADMIN_PASSWORD: xxxxxxxxxxxxxxx
### Generate from https://dashboard.pantheon.io/users/#account/tokens/
### Allows Terminus, the Pantheon CLI to authenticate with Pantheon.
# TERMINUS_TOKEN: xxxxxxxxxxxxxxx
### Allows Pantheon to post back comments to Github pull requests.
### Generate from https://github.com/settings/tokens
# GITHUB_TOKEN: xxxxxxxxxxxxxxx
# Some required variables are not necessarily sensitive pieces of
# information and could be defined here in the circle.yml or in the UI.
### The email address to be used for Drupal's user 1 account.
# ADMIN_EMAIL: testing@example.com
### The email address used for the user making git commits in CircleCI.
# GIT_EMAIL: me@example.com
### The machine name of the site on Pantheon to which code is pushed.
# TERMINUS_SITE my-site-name
### The name of the site to be used when installing Drupal through Behat.
# TEST_SITE_NAME: My Site Name
# These variables do not need to change with each copy of the repo.
BRANCH: $(echo $CIRCLE_BRANCH | grep -v '^\(master\|[0-9]\+.x\)$')
PR_LABEL: ${BRANCH:+pr-$BRANCH}
CI_LABEL: ci-$CIRCLE_BUILD_NUM
Expand Down

4 comments on commit 9570a4b

@pantheon-upstream
Copy link
Collaborator

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Created multidev environment ci-example-d8-composer#ci-329.

Visit Site

@pantheon-upstream
Copy link
Collaborator

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Created multidev environment ci-example-d8-composer#pr-site-ins.

Visit Site

@pantheon-upstream
Copy link
Collaborator

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Created multidev environment ci-example-d8-composer#ci-333.

Visit Site

@pantheon-upstream
Copy link
Collaborator

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Created multidev environment ci-example-d8-composer#ci-341.

Visit Site

Please sign in to comment.