Skip to content

Commit 9b15d6d

Browse files
authored
Fix CI regression test for contract sizes (#2445)
* Remove `df -h` * Use download-artifact GHA
1 parent fdb053a commit 9b15d6d

File tree

2 files changed

+10
-6
lines changed

2 files changed

+10
-6
lines changed

.github/workflows/ci.yml

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -702,11 +702,9 @@ jobs:
702702
# needed for `mapping::e2e_tests::fallible_storage_methods_work`
703703
INK_STATIC_BUFFER_SIZE: 256
704704
run:
705-
df -h;
706705
rustup toolchain remove nightly-2025-02-20;
707706
rustup toolchain remove stable;
708707
rustup toolchain remove 1.85.0;
709-
df -h;
710708
cargo +nightly test --all-features --all --manifest-path integration-tests/internal/mapping/Cargo.toml
711709

712710
examples-custom-test:

.github/workflows/submit-contract-sizes.yml

Lines changed: 10 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -25,11 +25,17 @@ jobs:
2525
with:
2626
fetch-depth: 1
2727

28-
- name: Download Master Contract Sizes
29-
uses: ./.github/download-artifact
28+
#- name: Download Master Contract Sizes
29+
#uses: ./.github/download-artifact
30+
#with:
31+
#GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
32+
#ARTIFACT_NAME: measurements-master
33+
34+
- name: Download artifact
35+
uses: dawidd6/action-download-artifact@v9
3036
with:
31-
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
32-
ARTIFACT_NAME: measurements-master
37+
branch: master
38+
name: measurements-master
3339

3440
- name: Extract branch name
3541
shell: bash

0 commit comments

Comments
 (0)