From f410e90a22ee4dc8957cc72c13424533327f9f98 Mon Sep 17 00:00:00 2001 From: Marcelo Bezerra <23555060+mmosca@users.noreply.github.com> Date: Tue, 19 Nov 2024 18:40:56 +0100 Subject: [PATCH 1/2] remove timeout --- .github/workflows/ci.yml | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index 1b0563d3e..810019186 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -48,7 +48,7 @@ jobs: max_attempts: 3 retry_on: error command: npm install - timeout_minutes: 10 + #timeout_minutes: 10 on_retry_command: rm -rfv node_modules - name: Build Linux run: npm run make @@ -103,7 +103,7 @@ jobs: max_attempts: 3 retry_on: error command: npm install - timeout_minutes: 10 + #timeout_minutes: 10 on_retry_command: rm -rfv node_modules - name: Build MacOS arm64 run: npm run make -- --arch="arm64" @@ -152,7 +152,7 @@ jobs: max_attempts: 3 retry_on: error command: npm install - timeout_minutes: 10 + #timeout_minutes: 10 on_retry_command: rm -rfv node_modules - name: Build MacOS x64 run: npm run make -- --arch="x64" @@ -206,7 +206,7 @@ jobs: max_attempts: 3 retry_on: error command: npm install - timeout_minutes: 10 + #timeout_minutes: 10 on_retry_command: rm -rfv node_modules - name: Build Win x64 run: npm run make -- --arch="x64" @@ -260,7 +260,7 @@ jobs: max_attempts: 3 retry_on: error command: npm install - timeout_minutes: 10 + #timeout_minutes: 10 on_retry_command: rm -rfv node_modules - name: Build Win32 run: npm run make -- --arch="ia32" From adb02fe76531b8f8c276dc70087006681a68d26f Mon Sep 17 00:00:00 2001 From: Marcelo Bezerra <23555060+mmosca@users.noreply.github.com> Date: Tue, 19 Nov 2024 19:00:46 +0100 Subject: [PATCH 2/2] Another attempt --- .github/workflows/ci.yml | 20 ++++++++++---------- 1 file changed, 10 insertions(+), 10 deletions(-) diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index 810019186..df9ea44fb 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -47,8 +47,8 @@ jobs: with: max_attempts: 3 retry_on: error - command: npm install - #timeout_minutes: 10 + command: npm install --foreground-scripts + timeout_minutes: 10 on_retry_command: rm -rfv node_modules - name: Build Linux run: npm run make @@ -102,8 +102,8 @@ jobs: with: max_attempts: 3 retry_on: error - command: npm install - #timeout_minutes: 10 + command: npm install --foreground-scripts + timeout_minutes: 10 on_retry_command: rm -rfv node_modules - name: Build MacOS arm64 run: npm run make -- --arch="arm64" @@ -151,8 +151,8 @@ jobs: with: max_attempts: 3 retry_on: error - command: npm install - #timeout_minutes: 10 + command: npm install --foreground-scripts + timeout_minutes: 10 on_retry_command: rm -rfv node_modules - name: Build MacOS x64 run: npm run make -- --arch="x64" @@ -205,8 +205,8 @@ jobs: with: max_attempts: 3 retry_on: error - command: npm install - #timeout_minutes: 10 + command: npm install --foreground-scripts + timeout_minutes: 10 on_retry_command: rm -rfv node_modules - name: Build Win x64 run: npm run make -- --arch="x64" @@ -259,8 +259,8 @@ jobs: with: max_attempts: 3 retry_on: error - command: npm install - #timeout_minutes: 10 + command: npm install --foreground-scripts + timeout_minutes: 10 on_retry_command: rm -rfv node_modules - name: Build Win32 run: npm run make -- --arch="ia32"