Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Fix Windows unit test failing in gitlab pipeline #130

Merged
merged 1 commit into from
Nov 10, 2019
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
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
18 changes: 9 additions & 9 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
- job: Windows_Unit
pool:
vmImage: 'VS2017-Win2016'
steps:
- template: azure-pipelines.test.yml
- template: ./pipeline/azure-pipelines.test.macos.yml
# - job: Windows_Unit
# pool:
# vmImage: 'vs2017-win2016'
# steps:
# - template: ./pipeline/azure-pipelines.test.windows.yml
Loading