# These images don't have Make, so commands are executed directly stages: - validate - build validate: stage: validate script: - csi scripts/LoadYaml.csx - csi scripts/LoadInk.csx image: mcr.microsoft.com/dotnet/sdk:5.0-focal 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