8000 github/workflows: Fix code-size CI workflow. · mbtronics/micropython@0a07915 · GitHub
[go: up one dir, main page]

Skip to content

Commit 0a07915

Browse files
committed
github/workflows: Fix code-size CI workflow.
Changes are: - Use ubuntu-20.04 so that gcc-multilib installs without error. - Use "fetch-depth: 100" to get history prior to pull request. Signed-off-by: Damien George <damien@micropython.org>
1 parent 45f0b6a commit 0a07915

File tree

1 file changed

+3
-1
lines changed

1 file changed

+3
-1
lines changed

.github/workflows/code_size.yml

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -14,9 +14,11 @@ on:
1414

1515
jobs:
1616
build:
17-
runs-on: ubuntu-latest
17+
runs-on: ubuntu-20.04
1818
steps:
1919
- uses: actions/checkout@v2
20+
with:
21+
fetch-depth: 100
2022
- name: Install packages
2123
run: source tools/ci.sh && ci_code_size_setup
2224
- name: Build

0 commit comments

Comments
 (0)
0