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