Show More
Commit Description:
Attribute Iosevka and fix links.
Commit Description:
Attribute Iosevka and fix links.
References:
File last commit:
Show/Diff file:
Action:
.gitlab-ci.yml
35 lines | 901 B | text/x-yaml | YamlLexer
35 lines | 901 B | text/x-yaml | YamlLexer
r449 | # These images don't have Make, so commands are executed directly | |||
r341 | stages: | |||
r454 | # - validate | |||
r341 | - build | |||
r454 | # validate: | |||
# stage: validate | ||||
# script: | ||||
# - dotnet tool install -g dotnet-script | ||||
# - dotnet tool run dotnet-script scripts/LoadYaml.csx | ||||
# - dotnet tool run dotnet-script scripts/LoadInk.csx | ||||
# image: mcr.microsoft.com/dotnet/sdk:3.1 | ||||
r447 | ||||
r341 | 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 | ||||