22 lines
496 B
YAML
22 lines
496 B
YAML
kind: pipeline
|
|
type: docker
|
|
name: default
|
|
|
|
workspace:
|
|
path: /build
|
|
|
|
steps:
|
|
- name: library
|
|
image: macjustice/git-lfs:latest
|
|
commands:
|
|
- git clone https://gitea.moonside.games/MoonsideGames/physfslibs.git
|
|
- mv /build/physfslibs/lib64/libphysfs.so.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
|