Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion .github/workflows/agent-prod.yml
Original file line number Diff line number Diff line change
Expand Up @@ -225,7 +225,7 @@ jobs:
${{ runner.os }}-${{ runner.arch }}-yarn-

- name: Fix node-gyp and Python
run: python3 -m pip install --break-system-packages packaging setuptools
run: python3 -m pip install --break-system-packages packaging setuptools || python3 -m pip install packaging setuptools
Copy link

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Using cmd1 || cmd2 will fall back to installing without --break-system-packages on any failure (not just “unknown option”), which can change behavior and obscure the real root cause. Consider narrowing the fallback to only the flag-not-supported scenario so genuine install failures aren’t retried with different semantics.

Other Locations
  • .github/workflows/agent-stage.yml:228
  • .github/workflows/desktop-app-prod.yml:228
  • .github/workflows/desktop-app-stage.yml:228
  • .github/workflows/desktop-timer-app-prod.yml:228
  • .github/workflows/desktop-timer-app-stage.yml:228
  • .github/workflows/server-api-prod.yml:228
  • .github/workflows/server-api-stage.yml:228
  • .github/workflows/server-mcp-prod.yml:228
  • .github/workflows/server-mcp-stage.yml:228
  • .github/workflows/server-prod.yml:228
  • .github/workflows/server-stage.yml:228

Fix This in Augment

🤖 Was this useful? React with 👍 or 👎, or 🚀 if it prevented an incident/outage.


- name: Install latest version of NPM
run: 'sudo npm install -g npm@11.6.2'
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/agent-stage.yml
Original file line number Diff line number Diff line change
Expand Up @@ -225,7 +225,7 @@ jobs:
${{ runner.os }}-${{ runner.arch }}-yarn-

- name: Fix node-gyp and Python
run: python3 -m pip install --break-system-packages packaging setuptools
run: python3 -m pip install --break-system-packages packaging setuptools || python3 -m pip install packaging setuptools

- name: Install latest version of NPM
run: 'sudo npm install -g npm@11.6.2'
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/desktop-app-prod.yml
Original file line number Diff line number Diff line change
Expand Up @@ -225,7 +225,7 @@ jobs:
${{ runner.os }}-${{ runner.arch }}-yarn-

- name: Fix node-gyp and Python
run: python3 -m pip install --break-system-packages packaging setuptools
run: python3 -m pip install --break-system-packages packaging setuptools || python3 -m pip install packaging setuptools

- name: Install latest version of NPM
run: 'sudo npm install -g npm@11.6.2'
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/desktop-app-stage.yml
Original file line number Diff line number Diff line change
Expand Up @@ -225,7 +225,7 @@ jobs:
${{ runner.os }}-${{ runner.arch }}-yarn-

- name: Fix node-gyp and Python
run: python3 -m pip install --break-system-packages packaging setuptools
run: python3 -m pip install --break-system-packages packaging setuptools || python3 -m pip install packaging setuptools

- name: Install latest version of NPM
run: 'sudo npm install -g npm@11.6.2'
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/desktop-timer-app-prod.yml
Original file line number Diff line number Diff line change
Expand Up @@ -225,7 +225,7 @@ jobs:
${{ runner.os }}-${{ runner.arch }}-yarn-

- name: Fix node-gyp and Python
run: python3 -m pip install --break-system-packages packaging setuptools
run: python3 -m pip install --break-system-packages packaging setuptools || python3 -m pip install packaging setuptools

- name: Install latest version of NPM
run: 'sudo npm install -g npm@11.6.2'
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/desktop-timer-app-stage.yml
Original file line number Diff line number Diff line change
Expand Up @@ -225,7 +225,7 @@ jobs:
${{ runner.os }}-${{ runner.arch }}-yarn-

- name: Fix node-gyp and Python
run: python3 -m pip install --break-system-packages packaging setuptools
run: python3 -m pip install --break-system-packages packaging setuptools || python3 -m pip install packaging setuptools

- name: Install latest version of NPM
run: 'sudo npm install -g npm@11.6.2'
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/server-api-prod.yml
Original file line number Diff line number Diff line change
Expand Up @@ -225,7 +225,7 @@ jobs:
${{ runner.os }}-${{ runner.arch }}-yarn-

- name: Fix node-gyp and Python
run: python3 -m pip install --break-system-packages packaging setuptools
run: python3 -m pip install --break-system-packages packaging setuptools || python3 -m pip install packaging setuptools

- name: Install latest version of NPM
run: 'sudo npm install -g npm@11.6.2'
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/server-api-stage.yml
Original file line number Diff line number Diff line change
Expand Up @@ -225,7 +225,7 @@ jobs:
${{ runner.os }}-${{ runner.arch }}-yarn-

- name: Fix node-gyp and Python
run: python3 -m pip install --break-system-packages packaging setuptools
run: python3 -m pip install --break-system-packages packaging setuptools || python3 -m pip install packaging setuptools

- name: Install latest version of NPM
run: 'sudo npm install -g npm@11.6.2'
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/server-mcp-prod.yml
Original file line number Diff line number Diff line change
Expand Up @@ -225,7 +225,7 @@ jobs:
${{ runner.os }}-${{ runner.arch }}-yarn-

- name: Fix node-gyp and Python
run: python3 -m pip install --break-system-packages packaging setuptools
run: python3 -m pip install --break-system-packages packaging setuptools || python3 -m pip install packaging setuptools

- name: Install latest version of NPM
run: 'sudo npm install -g npm@11.6.2'
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/server-mcp-stage.yml
Original file line number Diff line number Diff line change
Expand Up @@ -225,7 +225,7 @@ jobs:
${{ runner.os }}-${{ runner.arch }}-yarn-

- name: Fix node-gyp and Python
run: python3 -m pip install --break-system-packages packaging setuptools
run: python3 -m pip install --break-system-packages packaging setuptools || python3 -m pip install packaging setuptools

- name: Install latest version of NPM
run: 'sudo npm install -g npm@11.6.2'
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/server-prod.yml
Original file line number Diff line number Diff line change
Expand Up @@ -225,7 +225,7 @@ jobs:
${{ runner.os }}-${{ runner.arch }}-yarn-

- name: Fix node-gyp and Python
run: python3 -m pip install --break-system-packages packaging setuptools
run: python3 -m pip install --break-system-packages packaging setuptools || python3 -m pip install packaging setuptools

- name: Install latest version of NPM
run: 'sudo npm install -g npm@11.6.2'
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/server-stage.yml
Original file line number Diff line number Diff line change
Expand Up @@ -225,7 +225,7 @@ jobs:
${{ runner.os }}-${{ runner.arch }}-yarn-

- name: Fix node-gyp and Python
run: python3 -m pip install --break-system-packages packaging setuptools
run: python3 -m pip install --break-system-packages packaging setuptools || python3 -m pip install packaging setuptools

- name: Install latest version of NPM
run: 'sudo npm install -g npm@11.6.2'
Expand Down
2 changes: 1 addition & 1 deletion apps/agent/tsconfig.app.json
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
"extends": "./tsconfig.json",
"compilerOptions": {
"outDir": "../../dist/out-tsc",
"types": []
"types": ["google.maps"]
},
"files": ["src/main.ts", "src/polyfills.ts"],
"include": ["src/**/*.d.ts"],
Expand Down
2 changes: 1 addition & 1 deletion apps/server-api/tsconfig.app.json
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
"extends": "./tsconfig.json",
"compilerOptions": {
"outDir": "../../dist/out-tsc",
"types": []
"types": ["google.maps"]
},
"files": ["src/main.ts", "src/polyfills.ts"],
"include": ["src/**/*.d.ts"],
Expand Down
2 changes: 1 addition & 1 deletion apps/server-api/tsconfig.json
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@
"noPropertyAccessFromIndexSignature": false,
"noImplicitReturns": false,
"noFallthroughCasesInSwitch": false,
"types": ["node"]
"types": ["node", "google.maps"]
},
"files": [],
"include": [],
Expand Down
2 changes: 1 addition & 1 deletion apps/server/tsconfig.app.json
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
"extends": "./tsconfig.json",
"compilerOptions": {
"outDir": "../../dist/out-tsc",
"types": []
"types": ["google.maps"]
},
"files": ["src/main.ts", "src/polyfills.ts"],
"include": ["src/**/*.d.ts"],
Expand Down
Loading
Loading