You cannot 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
YAML

3 years ago
kind: pipeline
name: default
type: docker
steps:
- name: Build
3 years ago
image: deukhoofd/dotnet-builder
3 years ago
commands:
3 years ago
- export PATH=$PATH:$HOME/dotnet
- export DOTNET_ROOT=$PATH:$HOME/dotnet
2 years ago
- dotnet build -c Release /p:platform=x64
3 years ago
- name: Tests
3 years ago
image: deukhoofd/dotnet-builder
3 years ago
commands:
3 years ago
- export PATH=$PATH:$HOME/dotnet
- export DOTNET_ROOT=$PATH:$HOME/dotnet
3 years ago
- export LD_LIBRARY_PATH=.
2 years ago
- dotnet test -v n /p:platform=x64