This repository has been archived on 2023-10-28. You can view files and clone it, but cannot push or open issues or pull requests.
pwt-0x01-ng/.drone.yml

48 lines
832 B
YAML

---
kind: pipeline
type: docker
name: test-build
platform:
os: linux
arch: amd64
steps:
- name: sed-tgt-version
pull: always
image: bash
commands:
- sed -i 's/2.1.519/2.1.811/' global.json
- name: debug
pull: always
image: mcr.microsoft.com/dotnet/core/sdk:2.1-alpine
depends_on:
- sed-tgt-version
commands:
- dotnet restore
- dotnet build .
- name: release
pull: always
image: mcr.microsoft.com/dotnet/core/sdk:2.1-alpine
depends_on:
- debug
commands:
- dotnet clean
- dotnet restore
- dotnet publish -c Release
- name: docker-release-build
pull: always
image: banzaicloud/drone-kaniko
environment:
- PLUGIN_DOCKERFILE=Dockerfile
- name: docker-debug-build
pull: always
image: banzaicloud/drone-kaniko
environment:
- PLUGIN_DOCKERFILE=Dockerfile.dev