Show More
Commit Description:
Fix broken YAML.
Commit Description:
Fix broken YAML.
References:
File last commit:
Show/Diff file:
Action:
.gitlab-ci.yml
15 lines | 450 B | text/x-yaml | YamlLexer
15 lines | 450 B | text/x-yaml | YamlLexer
r322 | image: mcr.microsoft.com/dotnet/sdk:3.1 | |||
stages: | ||||
- build | ||||
r325 | build-debug: | |||
r322 | stage: build | |||
script: | ||||
- dotnet build isometric-park-fna-core.sln -f netcoreapp3.1 | ||||
r325 | ||||
build-release: | ||||
stage: build | ||||
script: | ||||
- dotnet build isometric-park-fna-core.sln -f netcoreapp3.1 -C Release | ||||
r326 | - cd isometric-park-fna/bin/Release/netcoreapp3.1; LD_LIBRARY_PATH="../../../fnalibs/lib64" DYLD_LIBRARY_PATH="../../../../fnalibs/osx" dotnet ./isometric-park-fna.dll | |||