Skip to content
Snippets Groups Projects
Commit d490ad3e authored by Soeren Peters's avatar Soeren Peters
Browse files

Remove Variable in CI msvc build.

parent 8a88682f
No related branches found
No related tags found
3 merge requests!403minor release 0.1.1,!402minor release 0.1.1,!395Remove Variables in CI msvc build as they are not working for the artifacts anymore.
......@@ -138,10 +138,6 @@ msvc_17:
- win
- gpu
variables:
BUILD_CONFIGURATION: "Release"
BUILD_FOLDER: "build"
# add cmake and MSBuild.exe to the path.
# This Needs to be adapted when moved to a new build machine.
before_script:
......@@ -152,16 +148,14 @@ msvc_17:
- MSBuild.exe -version
script:
- cd $CI_PROJECT_DIR
- md -force $env:BUILD_FOLDER
- cd $env:BUILD_FOLDER
- md -force build && cd build
- cmake .. --preset=msvc_all -DVF_ENABLE_PYTHON_BINDINGS=OFF -DCMAKE_CUDA_ARCHITECTURES=61 -DVF_ENABLE_WARNINGS_AS_ERRORS=ON
- MSBuild.exe VirtualFluids.sln /property:Configuration=$env:BUILD_CONFIGURATION /verbosity:minimal /maxcpucount:4
- MSBuild.exe VirtualFluids.sln /property:Configuration=Release /verbosity:minimal /maxcpucount:4
artifacts:
expire_in: 1 hrs
paths:
- $CI_PROJECT_DIR/$env:BUILD_FOLDER/
- $CI_PROJECT_DIR/build
###############################################################################
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment