31af742b53
Update .drone.yml
19 lines
482 B
YAML
19 lines
482 B
YAML
# Documentation:
|
|
# * https://docs.drone.io/quickstart/docker/
|
|
# * https://docs.drone.io/pipeline/docker/examples/languages/csharp/
|
|
# * https://discourse.drone.io/t/builds-are-stuck-in-pending-status/4437
|
|
|
|
kind: pipeline
|
|
type: docker
|
|
name: default
|
|
|
|
platform:
|
|
os: linux
|
|
arch: arm64
|
|
|
|
steps:
|
|
- name: test
|
|
image: mcr.microsoft.com/dotnet/sdk:6.0-alpine
|
|
commands:
|
|
- dotnet build "./NibblePoker.Application.ListComPort/NibblePoker.Application.ListComPort.csproj"
|