Version 5.1 - All the GraphQL #32
8
Jenkinsfile
vendored
8
Jenkinsfile
vendored
@ -6,8 +6,8 @@ pipeline {
|
||||
docker { image 'php:7.1-alpine' }
|
||||
}
|
||||
steps {
|
||||
sh 'chmod +x build/docker_install.sh'
|
||||
sh 'build/docker_install.sh'
|
||||
sh 'chmod +x ./build/docker_install.sh'
|
||||
sh 'sh build/docker_install.sh'
|
||||
sh 'apk add --no-cache php7-phpdbg'
|
||||
sh 'curl -sS https://getcomposer.org/installer | php'
|
||||
sh 'php composer.phar install --ignore-platform-reqs'
|
||||
@ -19,8 +19,8 @@ pipeline {
|
||||
docker { image 'php:7.2-alpine' }
|
||||
}
|
||||
steps {
|
||||
sh 'chmod +x build/docker_install.sh'
|
||||
sh 'build/docker_install.sh'
|
||||
sh 'chmod +x ./build/docker_install.sh'
|
||||
sh 'sh build/docker_install.sh'
|
||||
sh 'apk add --no-cache php7-phpdbg'
|
||||
sh 'curl -sS https://getcomposer.org/installer | php'
|
||||
sh 'php composer.phar install --ignore-platform-reqs'
|
||||
|
@ -6,7 +6,7 @@
|
||||
set -xe
|
||||
|
||||
# Install git (the php image doesn't have it) which is required by composer
|
||||
echo -e 'http://dl-cdn.alpinelinux.org/alpine/edge/main\nhttp://dl-cdn.alpinelinux.org/alpine/edge/community\nhttp://dl-cdn.alpinelinux.org/alpine/edge/testing' > /etc/apk/repositories
|
||||
apk add --no-cache \
|
||||
# echo -e 'http://dl-cdn.alpinelinux.org/alpine/edge/main\nhttp://dl-cdn.alpinelinux.org/alpine/edge/community\nhttp://dl-cdn.alpinelinux.org/alpine/edge/testing' > /etc/apk/repositories
|
||||
apk --update add --no-cache \
|
||||
curl \
|
||||
git
|
||||
|
Loading…
Reference in New Issue
Block a user