Skip to content

Commit

Permalink
Comment out windows unit test failing in gitlab pipeline
Browse files Browse the repository at this point in the history
* This issue should be resolved when version 1.8.7 of the electron rebuild
npm package gets released.
* Remove package-lock.json from the gitignore
* Seperate test yaml for each platform into different files
  • Loading branch information
Byron Ambright committed Nov 10, 2019
1 parent fe0ce95 commit 60bd99b
Show file tree
Hide file tree
Showing 5 changed files with 11,757 additions and 12 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
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

0 comments on commit 60bd99b

Please sign in to comment.