Created
January 9, 2020 17:15
-
-
Save fjod/c3e112b8811730c4499e40aebe1a2a4b to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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