Show More
Commit Description:
Add missing component and message.
Commit Description:
Add missing component and message.
File last commit:
Show/Diff file:
Action:
.gitlab-ci.yml
42 lines | 1.2 KiB | 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:
Remove CI validation for now.
r454 # - validate
Add CI support....
r341 - build
Remove CI validation for now.
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
Add validation to Gitlab CI.
r447
Add CI support....
r341 build-debug:
stage: build
script:
Tweak restore and solution file....
r662 - dotnet restore isometric-park-fna-core.sln
Add CI support....
r341 - dotnet build isometric-park-fna-core.sln -f netcoreapp3.1
Hard code a known-working version of dotnet core.
r574 image: mcr.microsoft.com/dotnet/sdk:3.1.415-focal
Add CI support....
r341
build-release-windows:
stage: build
script:
Tweak restore and solution file....
r662 - dotnet restore isometric-park-fna-core.sln
Add packages target to Makefile.
r689 - dotnet build isometric-park-fna-core.sln -f netcoreapp3.1 -c Release --runtime win-x64
Hard code a known-working version of dotnet core.
r574 image: mcr.microsoft.com/dotnet/sdk:3.1.415
Keep release builds.
r687 artifacts:
paths:
- isometric-park-fna/bin/Release
expire_in: 1 week
Add CI support....
r341
build-release:
stage: build
script:
Tweak restore and solution file....
r662 - dotnet restore isometric-park-fna-core.sln
Add CI support....
r341 - dotnet build isometric-park-fna-core.sln -f netcoreapp3.1 -c Release
artifacts:
paths:
Keep release builds.
r687 - isometric-park-fna/bin/Release
Add CI support....
r341 expire_in: 1 week
Hard code a known-working version of dotnet core.
r574 image: mcr.microsoft.com/dotnet/sdk:3.1.415-focal