Page MenuHomePhabricator

D5204.diff
No OneTemporary

D5204.diff

diff --git a/.buildkite/android.yml b/.buildkite/android.yml
--- a/.buildkite/android.yml
+++ b/.buildkite/android.yml
@@ -1,7 +1,7 @@
steps:
- - label: ":robot_face: Android Build"
+ - label: ':robot_face: Android Build'
command:
- - 'yarn cleaninstall --frozen-lockfile --skip-optional'
+ - 'yarn cleaninstall --frozen-lockfile --skip-optional --network-timeout 180000'
- 'cd native/android'
- './gradlew bundleRelease --no-daemon "-Dorg.gradle.jvmargs=-Xmx32g -XX:MaxPermSize=32g -XX:+HeapDumpOnOutOfMemoryError"'
plugins:
diff --git a/.buildkite/eslint_flow_jest.yml b/.buildkite/eslint_flow_jest.yml
--- a/.buildkite/eslint_flow_jest.yml
+++ b/.buildkite/eslint_flow_jest.yml
@@ -1,8 +1,8 @@
steps:
- - label: ":eslint: :jest: ESLint & Flow & Jest"
+ - label: ':eslint: :jest: ESLint & Flow & Jest'
command:
- '(pkill flow || true)'
- - 'yarn cleaninstall --frozen-lockfile --skip-optional'
+ - 'yarn cleaninstall --frozen-lockfile --skip-optional --network-timeout 180000'
- 'yarn eslint --max-warnings=0 & yarn workspace lib flow & yarn workspace web flow & yarn workspace landing flow & yarn workspace native flow & yarn workspace keyserver flow'
- 'yarn workspace lib test && yarn workspace keyserver test'
plugins:
diff --git a/.buildkite/ios.yml b/.buildkite/ios.yml
--- a/.buildkite/ios.yml
+++ b/.buildkite/ios.yml
@@ -1,8 +1,8 @@
steps:
- - label: ":ios: iOS Build"
+ - label: ':ios: iOS Build'
command:
- 'pod repo update && yarn workspace native clean-ios'
- - 'yarn cleaninstall --frozen-lockfile --skip-optional'
+ - 'yarn cleaninstall --frozen-lockfile --skip-optional --network-timeout 180000'
- 'cd native/ios && xcodebuild -workspace Comm.xcworkspace -scheme Comm -destination generic/platform=iOS -allowProvisioningUpdates'
agents:
- 'mac=true'
diff --git a/.buildkite/nix_yarn.yml b/.buildkite/nix_yarn.yml
--- a/.buildkite/nix_yarn.yml
+++ b/.buildkite/nix_yarn.yml
@@ -1,5 +1,5 @@
steps:
- - label: 'nix develop -c yarn cleaninstall'
- command: 'nix develop --accept-flake-config -c yarn cleaninstall'
+ - label: 'nix develop -c yarn cleaninstall --network-timeout 180000'
+ command: 'nix develop --accept-flake-config -c yarn cleaninstall --network-timeout 180000'
agents:
- 'nixdarwin=true'
diff --git a/.buildkite/tunnelbroker_unittests.yml b/.buildkite/tunnelbroker_unittests.yml
--- a/.buildkite/tunnelbroker_unittests.yml
+++ b/.buildkite/tunnelbroker_unittests.yml
@@ -1,5 +1,5 @@
steps:
- - label: ":nix: Tunnelbroker Unittests"
+ - label: ':nix: Tunnelbroker Unittests'
command:
- 'cd services/tunnelbroker'
- 'rm -rf build && mkdir build && cd build'
diff --git a/.github/workflows/android_ci.yml b/.github/workflows/android_ci.yml
--- a/.github/workflows/android_ci.yml
+++ b/.github/workflows/android_ci.yml
@@ -27,8 +27,8 @@
- name: Install Yarn
run: npm install -g yarn
- - name: yarn --frozen-lockfile
- run: yarn --frozen-lockfile
+ - name: yarn --frozen-lockfile --network-timeout 180000
+ run: yarn --frozen-lockfile --network-timeout 180000
- name: Save ANDROID_KEY_STORE_B64 to file
env:
diff --git a/.github/workflows/android_release.yml b/.github/workflows/android_release.yml
--- a/.github/workflows/android_release.yml
+++ b/.github/workflows/android_release.yml
@@ -19,8 +19,8 @@
- name: Install Yarn
run: npm install -g yarn
- - name: yarn --frozen-lockfile
- run: yarn --frozen-lockfile
+ - name: yarn --frozen-lockfile --network-timeout 180000
+ run: yarn --frozen-lockfile --network-timeout 180000
- name: Save ANDROID_KEY_STORE_B64 to file
env:
diff --git a/.github/workflows/eslint_flow_jest.yml b/.github/workflows/eslint_flow_jest.yml
--- a/.github/workflows/eslint_flow_jest.yml
+++ b/.github/workflows/eslint_flow_jest.yml
@@ -15,8 +15,8 @@
- name: npm install -g yarn
run: npm install -g yarn
- - name: yarn --frozen-lockfile
- run: yarn --frozen-lockfile
+ - name: yarn --frozen-lockfile --network-timeout 180000
+ run: yarn --frozen-lockfile --network-timeout 180000
- name: yarn eslint --max-warnings=0
run: yarn eslint --max-warnings=0
diff --git a/.github/workflows/ios_ci.yml b/.github/workflows/ios_ci.yml
--- a/.github/workflows/ios_ci.yml
+++ b/.github/workflows/ios_ci.yml
@@ -55,8 +55,8 @@
- name: npm install -g yarn
run: npm install -g yarn
- - name: yarn --frozen-lockfile
- run: yarn --frozen-lockfile
+ - name: yarn --frozen-lockfile --network-timeout 180000
+ run: yarn --frozen-lockfile --network-timeout 180000
- name: Save auth_key to file
working-directory: ./native/ios
diff --git a/.github/workflows/ios_release.yml b/.github/workflows/ios_release.yml
--- a/.github/workflows/ios_release.yml
+++ b/.github/workflows/ios_release.yml
@@ -48,8 +48,8 @@
- name: npm install -g yarn
run: npm install -g yarn
- - name: yarn --frozen-lockfile
- run: yarn --frozen-lockfile
+ - name: yarn --frozen-lockfile --network-timeout 180000
+ run: yarn --frozen-lockfile --network-timeout 180000
- name: Save auth_key to file
working-directory: ./native/ios
diff --git a/.github/workflows/ios_xctest.yml b/.github/workflows/ios_xctest.yml
--- a/.github/workflows/ios_xctest.yml
+++ b/.github/workflows/ios_xctest.yml
@@ -55,8 +55,8 @@
- name: npm install -g yarn
run: npm install -g yarn
- - name: yarn --frozen-lockfile
- run: yarn --frozen-lockfile
+ - name: yarn --frozen-lockfile --network-timeout 180000
+ run: yarn --frozen-lockfile --network-timeout 180000
- name: Save auth_key to file
working-directory: ./native/ios
diff --git a/.github/workflows/remove_harbormaster_tags.yml b/.github/workflows/remove_harbormaster_tags.yml
--- a/.github/workflows/remove_harbormaster_tags.yml
+++ b/.github/workflows/remove_harbormaster_tags.yml
@@ -14,8 +14,8 @@
- name: npm install -g yarn
run: npm install -g yarn
- - name: yarn --frozen-lockfile
- run: yarn --frozen-lockfile
+ - name: yarn --frozen-lockfile --network-timeout 180000
+ run: yarn --frozen-lockfile --network-timeout 180000
- name: Generate tag removal script
working-directory: ./scripts

File Metadata

Mime Type
text/plain
Expires
Sat, Nov 23, 8:21 PM (20 h, 55 m)
Storage Engine
blob
Storage Format
Raw Data
Storage Handle
2572334
Default Alt Text
D5204.diff (6 KB)

Event Timeline