-
Notifications
You must be signed in to change notification settings - Fork 220
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
1 parent
1b0f765
commit 84f9b5c
Showing
4 changed files
with
86 additions
and
140 deletions.
There are no files selected for viewing
34 changes: 0 additions & 34 deletions
34
a3p-integration/.yarn/patches/@agoric-synthetic-chain-npm-0.4.3-5eef0da8d9.patch
This file was deleted.
Oops, something went wrong.
23 changes: 23 additions & 0 deletions
23
a3p-integration/.yarn/patches/@agoric-synthetic-chain-npm-0.4.5-96b3c6b790.patch
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,23 @@ | ||
diff --git a/dist/upgrade-test-scripts/install_deps.sh b/dist/upgrade-test-scripts/install_deps.sh | ||
index 7f5a986b05c2e5672303b3f06ddf74a093a1f02f..f96fd3883abe677e0538848017b16b28ba5da572 100755 | ||
--- a/dist/upgrade-test-scripts/install_deps.sh | ||
+++ b/dist/upgrade-test-scripts/install_deps.sh | ||
@@ -20,6 +20,17 @@ if [ -n "$PROPOSAL_PATH" ]; then | ||
if test -f "yarn.lock"; then | ||
yarn --version # only Berry supported, so next commands will fail on classic | ||
yarn config set --home enableTelemetry 0 | ||
- yarn install --immutable | ||
+ if yarn install --immutable; then | ||
+ echo "Success" | ||
+ exit 0 | ||
+ fi | ||
+ echo Install failed. Debugging… | ||
+ # Disable CI default (immutable) | ||
+ unset CI | ||
+ echo "copying existing yarn.lock" | ||
+ cp yarn.lock yarn.lock.bak | ||
+ echo "installing" | ||
+ yarn install | ||
+ exit 0 | ||
fi | ||
fi |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -16,7 +16,7 @@ | |
"doctor": "yarn synthetic-chain doctor" | ||
}, | ||
"dependencies": { | ||
"@agoric/synthetic-chain": "patch:@agoric/synthetic-chain@npm%3A0.4.3#~/.yarn/patches/@agoric-synthetic-chain-npm-0.4.3-5eef0da8d9.patch", | ||
"@agoric/synthetic-chain": "patch:@agoric/synthetic-chain@npm%3A0.4.5#~/.yarn/patches/@agoric-synthetic-chain-npm-0.4.5-96b3c6b790.patch", | ||
"@types/better-sqlite3": "^7.6.11" | ||
}, | ||
"packageManager": "[email protected]", | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters