We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 4915843 commit 2196ad8Copy full SHA for 2196ad8
.circleci/config.yml
@@ -137,13 +137,16 @@ jobs:
137
CONTAINER_WP_VERSION: "latest"
138
CONTAINER_PHP_VERSION: "7.3"
139
deploy_job:
140
+ working_directory: /root/project/phpcompat-demo
141
docker:
- - image: circleci/buildpack-deps:latest
142
+ - image: wordpress:php7.3-fpm-alpine
143
steps:
144
+ - run: apk add --no-cache git subversion rsync
145
+ - *install_composer
146
- checkout
147
- run:
- name: Install dependencies
- command: sudo apt-get install rsync -qq
148
+ name: Install composer without dev packages
149
+ command: composer install --no-dev --no-suggest --optimize-autoloader
150
151
name: Create artifacts directory
152
command: mkdir -p /tmp/artifacts
0 commit comments