Initial Bitbucket Pipelines configuration
This commit is contained in:
parent
6268549d37
commit
3725ac631b
20
bitbucket-pipelines.yml
Normal file
20
bitbucket-pipelines.yml
Normal file
@ -0,0 +1,20 @@
|
|||||||
|
# Template PHP Build
|
||||||
|
|
||||||
|
# This template allows you to validate your PHP application.
|
||||||
|
# The workflow allows running tests and code linting on the default branch.
|
||||||
|
|
||||||
|
image: composer:2.0
|
||||||
|
|
||||||
|
|
||||||
|
pipelines:
|
||||||
|
default:
|
||||||
|
- parallel:
|
||||||
|
- step:
|
||||||
|
name: Test
|
||||||
|
script:
|
||||||
|
- composer install
|
||||||
|
- apt-get update
|
||||||
|
- apt-get -qq install git-ftp
|
||||||
|
- git ftp push -u $FTP_USERNAME -p $FTP_PASSWORD $FTP_URL
|
||||||
|
caches:
|
||||||
|
- composer
|
||||||
Loading…
Reference in New Issue
Block a user