2020-02-21 07:03:25 +00:00
|
|
|
kind: pipeline
|
|
|
|
type: docker
|
|
|
|
name: default
|
|
|
|
|
|
|
|
workspace:
|
|
|
|
path: /build
|
|
|
|
|
|
|
|
steps:
|
|
|
|
- name: library
|
2020-02-21 07:05:46 +00:00
|
|
|
image: mcr.microsoft.com/dotnet/core/sdk:3.1
|
2020-02-21 07:03:25 +00:00
|
|
|
commands:
|
|
|
|
- git clone git@gitea.moonside.games:MoonsideGames/physfslibs.git
|
|
|
|
- mv /build/physfslibs/lib64/libphysfs.3.0.2 /build/physfslibs/lib64/libphysfs.so
|
|
|
|
|
|
|
|
- name: test
|
|
|
|
image: mcr.microsoft.com/dotnet/core/sdk:3.1
|
|
|
|
environment:
|
|
|
|
LD_LIBRARY_PATH: /build/physfslibs/lib64/
|
|
|
|
commands:
|
|
|
|
- dotnet build -c Release
|
|
|
|
- dotnet test -c Release
|
|
|
|
|
|
|
|
- name: deploy
|
|
|
|
image: mcr.microsoft.com/dotnet/core/sdk:3.1
|
|
|
|
environment:
|
|
|
|
API_KEY:
|
|
|
|
from_secret: API_KEY
|
|
|
|
commands:
|
|
|
|
- dotnet nuget push /build/NETPhysFS/bin/Release/MoonTools.NETPhysFS.*.nupkg -s https://api.nuget.org/v3/index.json -k $API_KEY
|
|
|
|
when:
|
|
|
|
ref:
|
|
|
|
- refs/tags/*.*.*
|