mirror of
https://github.com/ckaczor/azuredatastudio.git
synced 2026-01-13 17:22:15 -05:00
Increase yarn timeout when installing packages (#13347)
* Increase yarn timeout when installing packages * Update other platforms
This commit is contained in:
15
.github/workflows/ci.yml
vendored
15
.github/workflows/ci.yml
vendored
@@ -31,7 +31,10 @@ jobs:
|
|||||||
with:
|
with:
|
||||||
node-version: 10
|
node-version: 10
|
||||||
# TODO: cache node modules
|
# TODO: cache node modules
|
||||||
- run: yarn --frozen-lockfile
|
# Increase timeout to get around latency issues when fetching certain packages
|
||||||
|
- run: |
|
||||||
|
yarn config set network-timeout 300000
|
||||||
|
yarn --frozen-lockfile
|
||||||
name: Install Dependencies
|
name: Install Dependencies
|
||||||
- run: yarn electron x64
|
- run: yarn electron x64
|
||||||
name: Download Electron
|
name: Download Electron
|
||||||
@@ -79,7 +82,10 @@ jobs:
|
|||||||
- uses: actions/setup-python@v1
|
- uses: actions/setup-python@v1
|
||||||
with:
|
with:
|
||||||
python-version: '2.x'
|
python-version: '2.x'
|
||||||
- run: yarn --frozen-lockfile
|
# Increase timeout to get around latency issues when fetching certain packages
|
||||||
|
- run: |
|
||||||
|
yarn config set network-timeout 300000
|
||||||
|
yarn --frozen-lockfile
|
||||||
name: Install Dependencies
|
name: Install Dependencies
|
||||||
- run: yarn electron
|
- run: yarn electron
|
||||||
name: Download Electron
|
name: Download Electron
|
||||||
@@ -112,7 +118,10 @@ jobs:
|
|||||||
- uses: actions/setup-node@v1
|
- uses: actions/setup-node@v1
|
||||||
with:
|
with:
|
||||||
node-version: 10
|
node-version: 10
|
||||||
- run: yarn --frozen-lockfile
|
# Increase timeout to get around latency issues when fetching certain packages
|
||||||
|
- run: |
|
||||||
|
yarn config set network-timeout 300000
|
||||||
|
yarn --frozen-lockfile
|
||||||
name: Install Dependencies
|
name: Install Dependencies
|
||||||
- run: yarn electron x64
|
- run: yarn electron x64
|
||||||
name: Download Electron
|
name: Download Electron
|
||||||
|
|||||||
Reference in New Issue
Block a user