PkmnLibSharp/.drone.yml

18 lines
441 B
YAML
Raw Normal View History

2020-05-03 09:02:27 +00:00
kind: pipeline
name: default
type: docker
steps:
- name: Build
2020-05-03 14:26:14 +00:00
image: deukhoofd/dotnet-builder
2020-05-03 09:02:27 +00:00
commands:
2020-05-03 14:29:53 +00:00
- export PATH=$PATH:$home/dotnet
- export DOTNET_ROOT=$PATH:$home/dotnet
2020-05-03 09:02:27 +00:00
- dotnet build -c Release
- name: Tests
2020-05-03 14:26:14 +00:00
image: deukhoofd/dotnet-builder
2020-05-03 09:02:27 +00:00
commands:
2020-05-03 14:29:53 +00:00
- export PATH=$PATH:$home/dotnet
- export DOTNET_ROOT=$PATH:$home/dotnet
2020-05-03 14:26:14 +00:00
- export LD_LIBRARY_PATH=.
2020-05-03 09:02:27 +00:00
- dotnet test -v n