| 123456789101112131415161718192021222324252627282930313233343536373839404142 |
- stages:
- - build
- - test
- - deploy
- cache:
- paths:
- - vendor/
- before_script:
- # - sudo cp ci/.envCi .env
- # - sudo bash ci/installEnv.sh
- build:
- stage: build
- tags:
- - testwas
- script:
- - echo "build ....."
- test:
- stage: test
- tags:
- - testwas
- script:
- - echo "run test....."
- # - path=`pwd`
- # - sudo bash ci/judgePush.sh $path
- # - vendor/bin/phpunit --testsuite=Unit
- deploy:
- stage: deploy
- tags:
- - testwas
- script:
- - echo "deploy ...."
- # - cd /var/www/bswas_test && sudo git config --global credential.helper store
- # - sudo git pull
- # - sudo bash ci/executeCommand.sh
- # only:
- # - master
|