Merge pull request #1622 from cosmos/upgrade-yarn-test2

Upgrade yarn to fix CI builds
This commit is contained in:
Simon Warta 2025-01-15 13:20:09 +01:00 committed by GitHub
commit 9f92a188cb
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194
1616 changed files with 24126 additions and 27663 deletions

View File

@ -34,7 +34,7 @@ workflows:
- build
matrix:
parameters:
node-version: ["16", "18", "20"]
node-version: ["18", "20"]
- test-chrome:
requires:
- build
@ -46,7 +46,7 @@ workflows:
jobs:
build:
docker:
- image: circleci/node:16.13-bullseye
- image: cimg/node:18.20
steps:
- run:
name: Install Git Large File Storage (LFS)
@ -57,7 +57,9 @@ jobs:
command: echo "node $(node --version)"; echo "yarn $(yarn --version)"
- run:
name: Install libusb
command: sudo apt-get install libusb-1.0-0-dev
command: |
sudo apt update
sudo apt install libusb-1.0-0-dev
- run:
name: Install Dependencies
command: yarn install --immutable --immutable-cache --check-cache
@ -78,8 +80,9 @@ jobs:
# As a consequence, we cannot use the circleci CLI for this job because "You cannot use the machine
# executor in local jobs." (https://circleci.com/docs/2.0/local-cli/#limitations-of-running-jobs-locally)
#
# Available images: https://circleci.com/docs/2.0/configuration-reference/#available-machine-images
image: ubuntu-2004:202107-02
# Available images: https://circleci.com/developer/machine/image/ubuntu-2004
# Note that ubuntu-2004:202111-02 and above cause checksum issues when installing yarn packages. No idea why.
image: ubuntu-2004:202111-02
steps:
- run:
name: Install Git Large File Storage (LFS)
@ -213,8 +216,9 @@ jobs:
# As a consequence, we cannot use the circleci CLI for this job because "You cannot use the machine
# executor in local jobs." (https://circleci.com/docs/2.0/local-cli/#limitations-of-running-jobs-locally)
#
# Available images: https://circleci.com/docs/2.0/configuration-reference/#available-machine-images
image: ubuntu-2004:202107-02
# Available images: https://circleci.com/developer/machine/image/ubuntu-2004
# Note that ubuntu-2004:202111-02 and above cause checksum issues when installing yarn packages. No idea why.
image: ubuntu-2004:202111-02
resource_class: large
steps:
- run:
@ -259,7 +263,6 @@ jobs:
# `apt download --print-uris nodejs` to get a download URL.
command: |
declare -A node_links=(
["16"]="https://deb.nodesource.com/node_16.x/pool/main/n/nodejs/nodejs_16.20.2-1nodesource1_amd64.deb"
["18"]="https://deb.nodesource.com/node_18.x/pool/main/n/nodejs/nodejs_18.17.1-1nodesource1_amd64.deb"
["20"]="https://deb.nodesource.com/node_20.x/pool/main/n/nodejs/nodejs_20.6.0-1nodesource1_amd64.deb"
)
@ -346,8 +349,9 @@ jobs:
# As a consequence, we cannot use the circleci CLI for this job because "You cannot use the machine
# executor in local jobs." (https://circleci.com/docs/2.0/local-cli/#limitations-of-running-jobs-locally)
#
# Available images: https://circleci.com/docs/2.0/configuration-reference/#available-machine-images
image: ubuntu-2004:202107-02
# Available images: https://circleci.com/developer/machine/image/ubuntu-2004
# Note that ubuntu-2004:202111-02 and above cause checksum issues when installing yarn packages. No idea why.
image: ubuntu-2004:202111-02
resource_class: large
steps:
- browser-tools/install-chrome # Slow because apt update but what can you do 🤷‍
@ -455,8 +459,9 @@ jobs:
# As a consequence, we cannot use the circleci CLI for this job because "You cannot use the machine
# executor in local jobs." (https://circleci.com/docs/2.0/local-cli/#limitations-of-running-jobs-locally)
#
# Available images: https://circleci.com/docs/2.0/configuration-reference/#available-machine-images
image: ubuntu-2004:202107-02
# Available images: https://circleci.com/developer/machine/image/ubuntu-2004
# Note that ubuntu-2004:202111-02 and above cause checksum issues when installing yarn packages. No idea why.
image: ubuntu-2004:202111-02
resource_class: large
steps:
- run:
@ -560,7 +565,7 @@ jobs:
./scripts/wasmd/stop.sh
docs-build:
docker:
- image: circleci/node:16.13-bullseye
- image: cimg/node:18.20
steps:
- run:
name: Install Git Large File Storage (LFS)
@ -576,7 +581,9 @@ jobs:
command: echo "node $(node --version)"; echo "yarn $(yarn --version)"
- run:
name: Install libusb
command: sudo apt-get install libusb-1.0-0-dev
command: |
sudo apt update
sudo apt install libusb-1.0-0-dev
- run:
name: Install Dependencies
command: yarn install --immutable --immutable-cache --check-cache
@ -591,7 +598,7 @@ jobs:
paths: docs_deployment
docs-deploy:
docker:
- image: circleci/node:16.13-bullseye
- image: cimg/node:18.20
steps:
- attach_workspace:
at: .
@ -609,7 +616,7 @@ jobs:
command: npx gh-pages@3.0.0 --message "Update docs [skip ci]" --dist docs_deployment --user "CI deployment <ci@cosmwasm.com>" --repo "git@github.com:cosmos/cosmjs.git"
lint:
docker:
- image: circleci/node:16.13-bullseye
- image: cimg/node:18.20
steps:
- run:
name: Install Git Large File Storage (LFS)
@ -631,7 +638,9 @@ jobs:
command: echo "node $(node --version)"; echo "yarn $(yarn --version)"
- run:
name: Install libusb
command: sudo apt-get install libusb-1.0-0-dev
command: |
sudo apt update
sudo apt install libusb-1.0-0-dev
- run:
name: Install Dependencies
command: yarn install --immutable --immutable-cache --check-cache
@ -655,8 +664,7 @@ jobs:
sudo apt install git-lfs
- checkout
- setup_remote_docker:
# >= v20.10 https://wiki.alpinelinux.org/wiki/Release_Notes_for_Alpine_3.14.0#faccessat2
version: 20.10.11
version: default
- run:
name: Build faucet Docker image
# Use ${CIRCLE_TAG}

11118
.pnp.cjs generated

File diff suppressed because one or more lines are too long

936
.pnp.loader.mjs generated

File diff suppressed because it is too large Load Diff

Binary file not shown.

BIN
.yarn/cache/@agoric-babel-standalone-npm-7.9.5-d7c88bfb35-d5bae2402a.zip (Stored with Git LFS) vendored Normal file

Binary file not shown.

BIN
.yarn/cache/@agoric-make-hardener-npm-0.1.3-8f4efdb7f1-6fc9231218.zip (Stored with Git LFS) vendored Normal file

Binary file not shown.

Binary file not shown.

Binary file not shown.

BIN
.yarn/cache/@agoric-transform-module-npm-0.4.1-65094eb3d8-94d9d66044.zip (Stored with Git LFS) vendored Normal file

Binary file not shown.

Binary file not shown.

BIN
.yarn/cache/@ampproject-remapping-npm-2.2.1-3da3d624be-92ce5915f8.zip (Stored with Git LFS) vendored Normal file

Binary file not shown.

Binary file not shown.

BIN
.yarn/cache/@babel-code-frame-npm-7.12.11-1a9a1b277f-836ffd1555.zip (Stored with Git LFS) vendored Normal file

Binary file not shown.

Binary file not shown.

BIN
.yarn/cache/@babel-code-frame-npm-7.22.13-2782581d20-f4cc8ae100.zip (Stored with Git LFS) vendored Normal file

Binary file not shown.

BIN
.yarn/cache/@babel-compat-data-npm-7.23.2-763f35b25b-0397a08c3e.zip (Stored with Git LFS) vendored Normal file

Binary file not shown.

Binary file not shown.

Binary file not shown.

BIN
.yarn/cache/@babel-core-npm-7.23.2-b93f586907-14ad6e0a3a.zip (Stored with Git LFS) vendored Normal file

Binary file not shown.

Binary file not shown.

BIN
.yarn/cache/@babel-generator-npm-7.23.0-08841c5369-b7d8727c57.zip (Stored with Git LFS) vendored Normal file

Binary file not shown.

Binary file not shown.

Binary file not shown.

Binary file not shown.

Binary file not shown.

Binary file not shown.

Binary file not shown.

Binary file not shown.

Binary file not shown.

Binary file not shown.

Binary file not shown.

Binary file not shown.

Binary file not shown.

Binary file not shown.

Binary file not shown.

Binary file not shown.

Binary file not shown.

Binary file not shown.

Binary file not shown.

BIN
.yarn/cache/@babel-helpers-npm-7.23.2-aa45e8b40c-3a6a939c52.zip (Stored with Git LFS) vendored Normal file

Binary file not shown.

Binary file not shown.

Binary file not shown.

BIN
.yarn/cache/@babel-highlight-npm-7.22.20-5de7aba88d-f3c3a193af.zip (Stored with Git LFS) vendored Normal file

Binary file not shown.

Binary file not shown.

BIN
.yarn/cache/@babel-parser-npm-7.23.0-8a7b151672-ab4ea9360e.zip (Stored with Git LFS) vendored Normal file

Binary file not shown.

BIN
.yarn/cache/@babel-runtime-npm-7.23.2-d013d6cf7e-271fcfad85.zip (Stored with Git LFS) vendored Normal file

Binary file not shown.

Binary file not shown.

Binary file not shown.

BIN
.yarn/cache/@babel-template-npm-7.22.15-0b464facb4-9312edd37c.zip (Stored with Git LFS) vendored Normal file

Binary file not shown.

Binary file not shown.

BIN
.yarn/cache/@babel-traverse-npm-7.23.2-4758feee42-d096c7c4ba.zip (Stored with Git LFS) vendored Normal file

Binary file not shown.

Binary file not shown.

BIN
.yarn/cache/@babel-types-npm-7.23.0-332fd21daf-70e4db41ac.zip (Stored with Git LFS) vendored Normal file

Binary file not shown.

BIN
.yarn/cache/@confio-ics23-npm-0.6.8-c87607eb2c-2f3f5032cd.zip (Stored with Git LFS) vendored Normal file

Binary file not shown.

Binary file not shown.

BIN
.yarn/cache/@discoveryjs-json-ext-npm-0.5.3-d076e2bd24-73789df18a.zip (Stored with Git LFS) vendored Normal file

Binary file not shown.

Binary file not shown.

BIN
.yarn/cache/@eslint-eslintrc-npm-0.4.1-48933b2833-1e094f3bca.zip (Stored with Git LFS) vendored Normal file

Binary file not shown.

Binary file not shown.

Binary file not shown.

BIN
.yarn/cache/@isaacs-cliui-npm-8.0.2-f4364666d5-b1bf42535d.zip (Stored with Git LFS) vendored Normal file

Binary file not shown.

Binary file not shown.

Binary file not shown.

Binary file not shown.

Binary file not shown.

Binary file not shown.

BIN
.yarn/cache/@istanbuljs-schema-npm-0.1.3-466bd3eaaa-61c5286771.zip (Stored with Git LFS) vendored Normal file

Binary file not shown.

Binary file not shown.

BIN
.yarn/cache/@jridgewell-gen-mapping-npm-0.3.2-c64eeb4a4e-82685c8735.zip (Stored with Git LFS) vendored Normal file

Binary file not shown.

BIN
.yarn/cache/@jridgewell-gen-mapping-npm-0.3.3-1815eba94c-376fc11cf5.zip (Stored with Git LFS) vendored Normal file

Binary file not shown.

Binary file not shown.

BIN
.yarn/cache/@jridgewell-resolve-uri-npm-3.1.0-6ff2351e61-78055e2526.zip (Stored with Git LFS) vendored Normal file

Binary file not shown.

Binary file not shown.

Binary file not shown.

BIN
.yarn/cache/@jridgewell-set-array-npm-1.1.2-45b82d7fb6-bc7ab4c4c0.zip (Stored with Git LFS) vendored Normal file

Binary file not shown.

BIN
.yarn/cache/@jridgewell-source-map-npm-0.3.2-6fd1f37b22-1540da3234.zip (Stored with Git LFS) vendored Normal file

Binary file not shown.

Binary file not shown.

Binary file not shown.

Binary file not shown.

Binary file not shown.

Binary file not shown.

Binary file not shown.

BIN
.yarn/cache/@koa-cors-npm-3.3.0-0564248a2f-41d2bac9aa.zip (Stored with Git LFS) vendored Normal file

Binary file not shown.

Binary file not shown.

BIN
.yarn/cache/@ledgerhq-devices-npm-5.51.1-8986be31a8-5923e5f2c7.zip (Stored with Git LFS) vendored Normal file

Binary file not shown.

Binary file not shown.

Binary file not shown.

BIN
.yarn/cache/@ledgerhq-errors-npm-5.50.0-ba43187a5a-2fb242c579.zip (Stored with Git LFS) vendored Normal file

Binary file not shown.

Binary file not shown.

Binary file not shown.

Binary file not shown.

Binary file not shown.

BIN
.yarn/cache/@ledgerhq-hw-transport-npm-5.51.1-c1120421b9-69dd4c7fbc.zip (Stored with Git LFS) vendored Normal file

Binary file not shown.

Binary file not shown.

Some files were not shown because too many files have changed in this diff Show More