Skip to content

Commit

Permalink
make deploy examples consistent with config.yml
Browse files Browse the repository at this point in the history
  • Loading branch information
byrond committed Jan 20, 2022
1 parent 67b02a2 commit 67814e0
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 10 deletions.
7 changes: 2 additions & 5 deletions defaults/install/.circleci/deploy-acquia-example
Original file line number Diff line number Diff line change
Expand Up @@ -33,7 +33,7 @@
- add_ssh_keys
- run:
name: Install packages
command: sudo apt-get install -y libpng-dev
command: sudo apt-get update && sudo apt-get install -y libpng-dev

- run:
name: Install nvm
Expand All @@ -43,13 +43,10 @@
touch $BASH_ENV
echo 'export NVM_DIR="$HOME/.nvm"' >> $BASH_ENV
echo '[ -s "$NVM_DIR/nvm.sh" ] && \. "$NVM_DIR/nvm.sh"' >> $BASH_ENV
- run:
name: Install PHP extensions
command: sudo docker-php-ext-install gd
- run:
name: Configure PHP
command: |
echo "memory_limit=-1" | sudo tee -a "/usr/local/etc/php/php.ini"
echo "sendmail_path=/bin/true" | sudo tee -a "/etc/php.d/circleci.ini"
- run:
name: Configure Git
command: |
Expand Down
7 changes: 2 additions & 5 deletions defaults/install/.circleci/deploy-pantheon.example
Original file line number Diff line number Diff line change
Expand Up @@ -35,7 +35,7 @@
- add_ssh_keys
- run:
name: Install packages
command: sudo apt-get install -y libpng-dev
command: sudo apt-get update && sudo apt-get install -y libpng-dev

- run:
name: Install nvm
Expand All @@ -45,13 +45,10 @@
touch $BASH_ENV
echo 'export NVM_DIR="$HOME/.nvm"' >> $BASH_ENV
echo '[ -s "$NVM_DIR/nvm.sh" ] && \. "$NVM_DIR/nvm.sh"' >> $BASH_ENV
- run:
name: Install PHP extensions
command: sudo docker-php-ext-install gd
- run:
name: Configure PHP
command: |
echo "memory_limit=-1" | sudo tee -a "/usr/local/etc/php/php.ini"
echo "sendmail_path=/bin/true" | sudo tee -a "/etc/php.d/circleci.ini"
- run:
name: Configure Git
command: |
Expand Down

0 comments on commit 67814e0

Please sign in to comment.