Show More
Commit Description:
Run scripts directy on Gitlab CI and bypass Make.
Commit Description:
Run scripts directy on Gitlab CI and bypass Make.
References:
File last commit:
Show/Diff file:
Action:
.gitlab-ci.yml
34 lines | 731 B | text/x-yaml | YamlLexer
34 lines | 731 B | text/x-yaml | YamlLexer
r341 | ||||
stages: | ||||
r447 | - validate | |||
r341 | - build | |||
r447 | validate: | |||
stage: validate | ||||
script: | ||||
r448 | - csi scripts/LoadYaml.csx | |||
- csi scripts/LoadInk.csx | ||||
r447 | image: mcr.microsoft.com/dotnet/sdk:3.1-focal | |||
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 | ||||