Skip to content

Commit

Permalink
Configure CI (no. 8)
Browse files Browse the repository at this point in the history
  • Loading branch information
cafour committed Apr 12, 2021
1 parent 4b182c1 commit dc8beed
Showing 1 changed file with 13 additions and 1 deletion.
14 changes: 13 additions & 1 deletion .azure/pipelines/ci.yml
Expand Up @@ -9,7 +9,7 @@ variables:
BUILD_CONFIGURATION: Release

jobs:
- job: buildCrossplatform
- job: crossplatformBuild
container: registry.gitlab.com/cafstep/dotvvm-test/dotvvm:latest
steps:
- script: npm ci --cache $(DOTVVM_ROOT)/.npm --prefer-offline
Expand All @@ -18,3 +18,15 @@ jobs:
workingDirectory: src/DotVVM.Framework
- script: dotnet restore --packages $(DOTVVM_ROOT)/.nuget src/Crossplatform.sln
- script: dotnet build --no-restore --configuration $(BUILD_CONFIGURATION) src/Crossplatform.sln
- publish: artifacts/
name: crossplatformBuild
- job: unitTestsCrossplatform
container: registry.gitlab.com/cafstep/dotvvm-test/dotvvm:latest
steps:
- download: crossplatformBuild
- task: DotNetCoreCLI@2
inputs:
command: test
projects: src/DotVVM.Framework.Tests.Common
noBuild: true
publishTestResuts: true

0 comments on commit dc8beed

Please sign in to comment.