Show More
Commit Description:
Fix debug command take III.
Commit Description:
Fix debug command take III.
References:
File last commit:
Show/Diff file:
Action:
.gitlab-ci.yml
19 lines | 666 B | text/x-yaml | YamlLexer
19 lines | 666 B | text/x-yaml | YamlLexer
r328 | image: mcr.microsoft.com/dotnet/sdk:3.1-focal | |||
r322 | ||||
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: | ||||
r327 | - dotnet build isometric-park-fna-core.sln -f netcoreapp3.1 -c Release | |||
r330 | # - cp fnalibs/x64/* isometric-park-fna/bin/Release/ | |||
- cp -r fnalibs/lib64 isometric-park-fna/bin/Release/ | ||||
r334 | - ls -a | |||
r333 | - cd isometric-park-fna/bin/Release/netcoreapp3.1; ls "../../../fnalibs/lib64" | |||
- cd isometric-park-fna/bin/Release/netcoreapp3.1; LD_LIBRARY_PATH="../../../fnalibs/lib64" DYLD_LIBRARY_PATH="../../../../fnalibs/osx" dotnet ./isometric-park-fna.dll | ||||