@@ -3,7 +3,7 @@ name: Insiders Build
3
3
on :
4
4
push :
5
5
branches :
6
- - main
6
+ - 14815-*
7
7
8
8
env :
9
9
NODE_VERSION : 12.15.0
24
24
build-vsix :
25
25
name : Build VSIX
26
26
runs-on : ubuntu-latest
27
- if : github.repository == 'microsoft/vscode-python'
27
+ # if: github.repository == 'microsoft/vscode-python'
28
28
steps :
29
29
- name : Checkout
30
30
uses : actions/checkout@v2
@@ -116,16 +116,18 @@ jobs:
116
116
defaults :
117
117
run :
118
118
working-directory : ${{env.special-working-directory}}
119
- if : github.repository == 'microsoft/vscode-python'
119
+ # if: github.repository == 'microsoft/vscode-python'
120
120
strategy :
121
121
fail-fast : false
122
122
matrix :
123
123
# We're not running CI on macOS for now because it's one less matrix entry to lower the number of runners used,
124
124
# macOS runners are expensive, and we assume that Ubuntu is enough to cover the UNIX case.
125
- os : [ubuntu-latest, windows-latest]
125
+ # os: [ubuntu-latest, windows-latest]
126
+ os : [ubuntu-latest]
126
127
# Run the tests on the oldest and most recent versions of Python.
127
128
python : [2.7, 3.9]
128
- test-suite : [ts-unit, python-unit, venv, single-workspace, multi-workspace, debugger, functional]
129
+ test-suite : [ts-unit]
130
+ # test-suite: [ts-unit, python-unit, venv, single-workspace, multi-workspace, debugger, functional]
129
131
steps :
130
132
- name : Checkout
131
133
uses : actions/checkout@v2
@@ -456,8 +458,8 @@ jobs:
456
458
coverage :
457
459
name : Coverage reports upload
458
460
runs-on : ubuntu-latest
459
- if : github.repository == 'microsoft/vscode-python'
460
- needs : [tests, smoke-tests ]
461
+ # if: github.repository == 'microsoft/vscode-python'
462
+ needs : [tests]
461
463
defaults :
462
464
run :
463
465
working-directory : ${{env.special-working-directory}}
0 commit comments