Show More
Commit Description:
Add scripts and support files.
Commit Description:
Add scripts and support files.
References:
File last commit:
Show/Diff file:
Action:
.gitlab-ci.yml
26 lines | 570 B | text/x-yaml | YamlLexer
26 lines | 570 B | text/x-yaml | YamlLexer
r341 | ||||
stages: | ||||
- build | ||||
build-debug: | ||||
stage: build | ||||
script: | ||||
- dotnet build isometric-park-fna-core.sln -f netcoreapp3.1 | ||||
image: mcr.microsoft.com/dotnet/sdk:3.1-focal | ||||
build-release-windows: | ||||
stage: build | ||||
script: | ||||
- dotnet build isometric-park-fna-core.sln -f netcoreapp3.1 -c Release | ||||
image: mcr.microsoft.com/dotnet/sdk:3.1 | ||||
build-release: | ||||
stage: build | ||||
script: | ||||
- dotnet build isometric-park-fna-core.sln -f netcoreapp3.1 -c Release | ||||
artifacts: | ||||
paths: | ||||
- screenshot.xwd | ||||
expire_in: 1 week | ||||
image: mcr.microsoft.com/dotnet/sdk:3.1-focal | ||||