Skip to content

Commit 9813271

Browse files
authored
Fix CI regression test for contract file sizes (#2443)
* Update readme * Trigger CI * Add checkout step * Add checkout * Set fetch-depht to 1 everywhere
1 parent 96da9fa commit 9813271

File tree

4 files changed

+9
-3
lines changed

4 files changed

+9
-3
lines changed

.github/workflows/ci.yml

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -767,6 +767,7 @@ jobs:
767767
examples-contract-build-riscv:
768768
runs-on: ubuntu-latest
769769
needs: [set-image]
770+
# todo
770771
# needs: [set-image, build-std, build-riscv]
771772
defaults:
772773
run:

.github/workflows/publish-docs.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -21,7 +21,7 @@ jobs:
2121
- name: Checkout
2222
uses: actions/checkout@v4
2323
with:
24-
fetch-depth: 100
24+
fetch-depth: 1
2525

2626
- name: Download Docs
2727
uses: ./.github/download-artifact

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

Lines changed: 6 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -15,11 +15,16 @@ jobs:
1515
permissions:
1616
pull-requests: write
1717
runs-on: ubuntu-latest
18-
timeout-minutes: 5
18+
timeout-minutes: 10
1919
if: >
2020
github.event.workflow_run.event == 'pull_request' &&
2121
github.event.workflow_run.conclusion == 'success'
2222
steps:
23+
- name: Checkout
24+
uses: actions/checkout@v4
25+
with:
26+
fetch-depth: 1
27+
2328
- name: Download Master Contract Sizes
2429
uses: ./.github/download-artifact
2530
with:

README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -75,7 +75,7 @@ See [here](https://use-ink.github.io/ink/ink/attr.contract.html) for a more deta
7575

7676
## Developer Documentation
7777

78-
We have [a very comprehensive documentation portal](https://use.ink),
78+
We have [a comprehensive documentation portal](https://use.ink),
7979
but if you are looking for the crate level documentation itself, then these are
8080
the relevant links:
8181

0 commit comments

Comments
 (0)