Skip to content

Instantly share code, notes, and snippets.

@fjod
Created January 9, 2020 17:15
Show Gist options
  • Save fjod/c3e112b8811730c4499e40aebe1a2a4b to your computer and use it in GitHub Desktop.
Save fjod/c3e112b8811730c4499e40aebe1a2a4b to your computer and use it in GitHub Desktop.
image: mcr.microsoft.com/dotnet/core/sdk:3.1
stages:
- build
- test
build:
stage: build
script:
- cd tortest2
- dotnet restore scraperTest.sln
- apt-get update -qq && apt-get install -y libc6-dev libgdiplus
- dotnet build scraperTest.sln
test:
stage: test
script:
- cd tortest2
- dotnet restore scraperTest.sln
- apt-get update -qq && apt-get install -y libc6-dev libgdiplus
- cd ../Testing/Tests
- dotnet test
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment