You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
18 lines
473 B
18 lines
473 B
kind: pipeline
|
|
name: default
|
|
|
|
type: docker
|
|
steps:
|
|
- name: Build
|
|
image: deukhoofd/dotnet-builder
|
|
commands:
|
|
- export PATH=$PATH:$HOME/dotnet
|
|
- export DOTNET_ROOT=$PATH:$HOME/dotnet
|
|
- dotnet build -c Release /p:platform=x64
|
|
- name: Tests
|
|
image: deukhoofd/dotnet-builder
|
|
commands:
|
|
- export PATH=$PATH:$HOME/dotnet
|
|
- export DOTNET_ROOT=$PATH:$HOME/dotnet
|
|
- export LD_LIBRARY_PATH=.
|
|
- dotnet test -v n /p:platform=x64 |