Paul Schneider 5 years ago
parent 84e0ad3792
commit 5aba610a4f
1 changed files with 11 additions and 7 deletions

@ -5,6 +5,7 @@
image: mono:4.6.2.7 image: mono:4.6.2.7
stages: stages:
- build
- test - test
- deploy - deploy
@ -25,7 +26,10 @@ before_script:
after_script: after_script:
debug: debug:
stage: test stage: build
artifacts:
paths:
- test/yavscTests/bin
script: script:
- cd test/yavscTests - cd test/yavscTests
- cp $TestingConfig appsettings.Testing.json - cp $TestingConfig appsettings.Testing.json
@ -44,16 +48,16 @@ non_reg:
non_reg_html: non_reg_html:
stage: test stage: test
trigger:
include:
- artifact: test/yavscTests/test-results.xml
job: non_reg
artifacts: artifacts:
paths: paths:
- test/yavscTests/test-results.html - test/yavscTests/test-results.html
script: script:
- cd test/yavscTests - cd test/yavscTests
- xsltproc ../../assets/dnx_xunit_to_html.xsl test-results.xml > test-results.html - xsltproc ../../assets/dnx_xunit_to_html.xsl test-results.xml > test-results.html
trigger:
include:
- artifact: test/yavscTests/test-results.xml
job: non_reg
release: release:
stage: deploy stage: deploy

Loading…