Skip to content

Commit

Permalink
Fix Windows unit test failing in gitlab pipeline
Browse files Browse the repository at this point in the history
  • Loading branch information
Byron Ambright committed Nov 8, 2019
1 parent fe0ce95 commit a3e2f9a
Show file tree
Hide file tree
Showing 6 changed files with 11,341 additions and 11 deletions.
1 change: 0 additions & 1 deletion .gitignore
Original file line number Diff line number Diff line change
@@ -1,5 +1,4 @@
node_modules
package-lock.json
npm-debug.log
build
dist
Expand Down
12 changes: 6 additions & 6 deletions azure-pipelines.yml
Original file line number Diff line number Diff line change
Expand Up @@ -7,12 +7,12 @@
jobs:
- job: Lint
pool:
vmImage: 'macOS 10.13'
vmImage: 'macOS-latest'
steps:
- task: NodeTool@0
displayName: 'Install Node.js'
inputs:
versionSpec: '8.x'
versionSpec: '10.x'
- task: UsePythonVersion@0
displayName: 'Install Python 2.x'
inputs:
Expand All @@ -22,11 +22,11 @@ jobs:
displayName: "Lint Code"
- job: macOS_Unit
pool:
vmImage: 'macOS-10.13'
vmImage: 'macOS-latest'
steps:
- template: azure-pipelines.test.yml
- template: ./pipeline/azure-pipelines.test.macos.yml
- job: Windows_Unit
pool:
vmImage: 'VS2017-Win2016'
vmImage: 'vs2017-win2016'
steps:
- template: azure-pipelines.test.yml
- template: ./pipeline/azure-pipelines.test.windows.yml
Loading

0 comments on commit a3e2f9a

Please sign in to comment.