Show More
Commit Description:
Use dotnet-script.
Commit Description:
Use dotnet-script.
File last commit:
Show/Diff file:
Action:
.gitlab-ci.yml
35 lines | 885 B | text/x-yaml | YamlLexer
Try dotnet 5 for validation.
r449 # These images don't have Make, so commands are executed directly
Add CI support....
r341 stages:
Add validation to Gitlab CI.
r447 - validate
Add CI support....
r341 - build
Add validation to Gitlab CI.
r447 validate:
stage: validate
script:
Install csi.
r451 - dotnet tool install -g dotnet-script
Use dotnet-script.
r453 - dotnet tool run dotnet-script scripts/LoadYaml.csx
- dotnet tool run dotnet-script scripts/LoadInk.csx
Try Windows image.
r452 image: mcr.microsoft.com/dotnet/sdk:3.1
Add validation to Gitlab CI.
r447
Add CI support....
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