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.
SAE_2.01_-_Developpement_du.../.drone.yml

26 lines
581 B

kind: pipeline
type: docker
name: Minecraft_CI_Pipeline
trigger:
branch:
- develop
event:
- push
steps:
- name: build
image: mcr.microsoft.com/dotnet/sdk:7.0
commands:
- cd Sources/
- dotnet restore "MineGuide.sln"
- dotnet build "MineGuide.sln" -c Release --no-restore
- dotnet publish "MineGuide.sln" -c Release --no-restore
- name: tests
image: mcr.microsoft.com/dotnet/sdk:7.0
commands:
- cd Sources/
- dotnet restore "MineGuide.sln"
- dotnet test "MineGuide.sln" --no-restore
depends_on: [build]