PkmnLibSharp/.drone.yml

18 lines
473 B
YAML
Raw Permalink 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:32:18 +00:00
- export PATH=$PATH:$HOME/dotnet
- export DOTNET_ROOT=$PATH:$HOME/dotnet
2020-12-31 11:54:33 +00:00
- dotnet build -c Release /p:platform=x64
2020-05-03 09:02:27 +00:00
- 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:32:18 +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-12-31 11:54:33 +00:00
- dotnet test -v n /p:platform=x64