Skip to content

Commit

Permalink
increase yarn network-timeout
Browse files Browse the repository at this point in the history
  • Loading branch information
Eugeny committed Feb 23, 2022
1 parent d1ac265 commit 76892c4
Show file tree
Hide file tree
Showing 2 changed files with 10 additions and 10 deletions.
14 changes: 7 additions & 7 deletions .github/workflows/build.yml
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@ name: Package-Build
on: [push, pull_request]
jobs:
Lint:
runs-on: macos-11.0
runs-on: macos-11

steps:
- name: Checkout
Expand Down Expand Up @@ -31,7 +31,7 @@ jobs:
run: yarn run lint

macOS-Build:
runs-on: macos-11.0
runs-on: macos-11
needs: Lint
strategy:
matrix:
Expand All @@ -54,10 +54,10 @@ jobs:
run: |
sudo npm i -g yarn@1.22.1
cd app
yarn
yarn --network-timeout 1000000
cd ..
rm app/node_modules/.yarn-integrity
yarn
yarn --network-timeout 1000000
- name: Build native deps
run: scripts/build-native.js
Expand Down Expand Up @@ -149,10 +149,10 @@ jobs:
sudo apt-get install libarchive-tools zsh
npm i -g yarn@1.19.1
cd app
yarn
yarn --network-timeout 1000000
cd ..
rm app/node_modules/.yarn-integrity
yarn
yarn --network-timeout 1000000
- name: Build native deps
run: scripts/build-native.js
Expand Down Expand Up @@ -266,7 +266,7 @@ jobs:
shell: powershell
run: |
npm i -g yarn@1.19.1
yarn
yarn --network-timeout 1000000
node scripts/build-native.js
yarn run build
node scripts/prepackage-plugins.js
Expand Down
6 changes: 3 additions & 3 deletions scripts/install-deps.js
Original file line number Diff line number Diff line change
Expand Up @@ -9,18 +9,18 @@ sh.exec(`yarn patch-package`, { fatal: true })
log.info('deps', 'app')

sh.cd('app')
sh.exec(`yarn install --force`, { fatal: true })
sh.exec(`yarn install --force --network-timeout 1000000`, { fatal: true })
sh.cd('..')

sh.cd('web')
sh.exec(`yarn install --force`, { fatal: true })
sh.exec(`yarn install --force --network-timeout 1000000`, { fatal: true })
sh.exec(`yarn patch-package`, { fatal: true })
sh.cd('..')

vars.allPackages.forEach(plugin => {
log.info('deps', plugin)
sh.cd(plugin)
sh.exec(`yarn install --force`, { fatal: true })
sh.exec(`yarn install --force --network-timeout 1000000`, { fatal: true })
sh.cd('..')
})

Expand Down

0 comments on commit 76892c4

Please sign in to comment.