From 80f79a78d268953791e24d07841b690bc0f83dc3 Mon Sep 17 00:00:00 2001 From: Serhii Shymkiv Date: Fri, 26 Jul 2024 17:08:35 +0300 Subject: [PATCH 1/2] Explicitely disable LFS. --- .github/workflows/pkg-pr-new-publish.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/pkg-pr-new-publish.yml b/.github/workflows/pkg-pr-new-publish.yml index 0283567a30..134650eec4 100644 --- a/.github/workflows/pkg-pr-new-publish.yml +++ b/.github/workflows/pkg-pr-new-publish.yml @@ -24,7 +24,7 @@ jobs: node-version: ${{ matrix.node }} - name: Build o1js and mina-signer run: | - git submodule update --init --recursive + GIT_LFS_SKIP_SMUDGE=1 git submodule update --init --recursive npm ci npm run prepublishOnly cd src/mina-signer From 4fd581a2b3d49c78354af2f39dce266b8afc7070 Mon Sep 17 00:00:00 2001 From: Serhii Shymkiv Date: Fri, 26 Jul 2024 17:09:04 +0300 Subject: [PATCH 2/2] Explicitely disable LFS. --- .github/actions/live-tests-shared/action.yml | 2 +- .github/workflows/benchmarks.yml | 2 +- .github/workflows/doc.yml | 2 +- 3 files changed, 3 insertions(+), 3 deletions(-) diff --git a/.github/actions/live-tests-shared/action.yml b/.github/actions/live-tests-shared/action.yml index 15576fbfe5..6dda1b2f85 100644 --- a/.github/actions/live-tests-shared/action.yml +++ b/.github/actions/live-tests-shared/action.yml @@ -21,7 +21,7 @@ runs: env: USE_CUSTOM_LOCAL_NETWORK: 'true' run: | - git submodule update --init --recursive + GIT_LFS_SKIP_SMUDGE=1 git submodule update --init --recursive npm ci npm run build touch profiling.md diff --git a/.github/workflows/benchmarks.yml b/.github/workflows/benchmarks.yml index b234c94a07..ec1a4d969d 100644 --- a/.github/workflows/benchmarks.yml +++ b/.github/workflows/benchmarks.yml @@ -33,7 +33,7 @@ jobs: METRICS_SOURCE_ENVIRONMENT: 'o1js GitHub Actions' METRICS_BASE_BRANCH_FOR_COMPARISON: 'main' run: | - git submodule update --init --recursive + GIT_LFS_SKIP_SMUDGE=1 git submodule update --init --recursive npm ci npm run build echo 'Running o1js benchmarks.' diff --git a/.github/workflows/doc.yml b/.github/workflows/doc.yml index 1d266fa3c9..6bd4433615 100644 --- a/.github/workflows/doc.yml +++ b/.github/workflows/doc.yml @@ -16,7 +16,7 @@ jobs: node-version: '18' - name: Run typedoc run: | - git submodule update --init --recursive + GIT_LFS_SKIP_SMUDGE=1 git submodule update --init --recursive npm ci npx typedoc --tsconfig tsconfig.node.json src/index.ts - name: Deploy