From c462936cdfd1abef77662509b14ec0191966de24 Mon Sep 17 00:00:00 2001 From: Kai Kriegel Date: Thu, 17 Sep 2020 14:13:39 +0000 Subject: [PATCH] Update .gitlab-ci.yml --- .gitlab-ci.yml | 32 ++++++++++++++++---------------- 1 file changed, 16 insertions(+), 16 deletions(-) diff --git a/.gitlab-ci.yml b/.gitlab-ci.yml index 8bd9cd8..91a0e0f 100644 --- a/.gitlab-ci.yml +++ b/.gitlab-ci.yml @@ -73,22 +73,22 @@ build_UWP: - '$env:MSI_RELEASE_FOLDER\YourApp Setup.msi' # saving msi to copy to deploy folder - '$env:TEST_FOLDER\' # saving entire Test project so NUnit can run tests -test_job: - stage: test - tags: - - xamarin - - windows -# only: -# - tags - script: - - '& "$env:NUNIT_PATH" ".\$env:TEST_FOLDER\Tests.dll"' # running NUnit tests - artifacts: - when: always # save test results even when the task fails - expire_in: 1 week # save gitlab server space, we copy the files we need to deploy folder later on - paths: - - '.\TestResult.xml' # saving NUnit results to copy to deploy folder - dependencies: - - build_job +# test_job: +# stage: test +# tags: +# - xamarin +# - windows +# # only: +# # - tags +# script: +# - '& "$env:NUNIT_PATH" ".\$env:TEST_FOLDER\Tests.dll"' # running NUnit tests +# artifacts: +# when: always # save test results even when the task fails +# expire_in: 1 week # save gitlab server space, we copy the files we need to deploy folder later on +# paths: +# - '.\TestResult.xml' # saving NUnit results to copy to deploy folder +# dependencies: +# - build_job # deploy_job: # stage: deploy