Fixing gitlab ci config file

parent d28ebe88
...@@ -13,12 +13,12 @@ release: ...@@ -13,12 +13,12 @@ release:
- master - master
artifacts: artifacts:
paths: paths:
- build/release/ - ./build/release/
script: script:
- msbuild "MyProject.sln" /p:Configuration="Release" /p:Platform="Any CPU" /p:OutputPath="build/release/" - msbuild "MyProject.sln" /p:Configuration="Release" /p:Platform="Any CPU" /p:OutputPath="./build/release/"
debug: debug:
stage: test stage: test
script: script:
- msbuild "MyProject.sln" /p:Configuration="Debug" /p:Platform="Any CPU" /p:OutputPath="build/debug/" - msbuild "MyProject.sln" /p:Configuration="Debug" /p:Platform="Any CPU" /p:OutputPath="./build/debug/"
- mono packages/NUnit.ConsoleRunner.3.6.0/tools/nunit3-console.exe build/debug/MyProject.Test.dll - mono packages/NUnit.ConsoleRunner.3.6.0/tools/nunit3-console.exe ./build/debug/MyProject.Test.dll
\ No newline at end of file \ No newline at end of file
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment