vnext
Paul Schneider 4 years ago
parent 73865c13fd
commit 7dc400431d
1 changed files with 9 additions and 18 deletions

@ -17,9 +17,8 @@ stages:
- test - test
- deploy - deploy
debug: before_script:
stage: test - . /opt/mono-4.6/mono-env
script:
- export GIT_SSL_NO_VERIFY=true - export GIT_SSL_NO_VERIFY=true
- curl --insecure -sSL https://lua.pschneider.fr/files/Paul/pub/dnx-install.sh | bash - curl --insecure -sSL https://lua.pschneider.fr/files/Paul/pub/dnx-install.sh | bash
- DNX_USER_HOME=`pwd -P`/dnx . ./dnx/dnvm/dnvm.sh - DNX_USER_HOME=`pwd -P`/dnx . ./dnx/dnvm/dnvm.sh
@ -29,6 +28,13 @@ debug:
- cd ../Yavsc.Server && dnu restore --ignore-failed-sources - cd ../Yavsc.Server && dnu restore --ignore-failed-sources
- cd ../Yavsc && dnu restore --ignore-failed-sources - cd ../Yavsc && dnu restore --ignore-failed-sources
- cd ../test && dnu restore --ignore-failed-sources - cd ../test && dnu restore --ignore-failed-sources
- cd ../cli && dnu restore --ignore-failed-sources
- cd ../..
debug:
stage: test
script:
- cd test
- dnu build - dnu build
- dnx test -maxthreads 1 -trait regression=non - dnx test -maxthreads 1 -trait regression=non
@ -40,27 +46,12 @@ release:
paths: paths:
- binaries/Release - binaries/Release
script: script:
- curl --insecure -sSL https://lua.pschneider.fr/files/Paul/pub/dnx-install.sh | bash
- DNX_USER_HOME=`pwd -P`/dnx . ./dnx/dnvm/dnvm.sh
- cd src/OAuth.AspNet.Token && dnu restore --ignore-failed-sources
- cd ../OAuth.AspNet.AuthServer && dnu restore --ignore-failed-sources
- cd ../Yavsc.Abstract && dnu restore --ignore-failed-sources
- cd ../Yavsc.Server && dnu restore --ignore-failed-sources
- cd ../Yavsc && dnu restore --ignore-failed-sources
- cd ../..
- make packages - make packages
deploy_staging: deploy_staging:
stage: deploy stage: deploy
script: script:
- echo "Deploy to staging server" - echo "Deploy to staging server"
- . /opt/mono-4.6/mono-env
- curl --insecure -sSL https://lua.pschneider.fr/files/Paul/pub/dnx-install.sh | bash
- DNX_USER_HOME=`pwd -P`/dnx . ./dnx/dnvm/dnvm.sh
- make restore
- make
- make strip_yavscd - make strip_yavscd
environment: environment:
name: staging name: staging

Loading…