From e824dccfca7f9ac721c590f72f8f742b49625101 Mon Sep 17 00:00:00 2001 From: cldupland Date: Wed, 23 Oct 2019 08:44:42 +0200 Subject: [PATCH] Update .gitlab-ci.yml --- .gitlab-ci.yml | 16 ++++++++-------- 1 file changed, 8 insertions(+), 8 deletions(-) diff --git a/.gitlab-ci.yml b/.gitlab-ci.yml index aa15e6d..04db64c 100644 --- a/.gitlab-ci.yml +++ b/.gitlab-ci.yml @@ -2,21 +2,21 @@ image: microsoft/dotnet:latest before_script: - cd TheGameExtreme - - dotnet restore View - - dotnet restore Model + - dotnet restore view + - dotnet restore model build: stage : build script: - - dotnet build -c Release --no-restore View - - dotnet build -c Release --no-restore Model - - dotnet publish -c Release --no-restore -o $CI_PROJECT_DIR/build/release View - - dotnet publish -c Release --no-restore -o $CI_PROJECT_DIR/build/release Model + - dotnet build -c Release --no-restore view + - dotnet build -c Release --no-restore model + - dotnet publish -c Release --no-restore -o $CI_PROJECT_DIR/build/release view + - dotnet publish -c Release --no-restore -o $CI_PROJECT_DIR/build/release model unit_tests: stage : test script: - - dotnet test --no-restore View - - dotnet test --no-restore Model \ No newline at end of file + - dotnet test --no-restore view + - dotnet test --no-restore model \ No newline at end of file