diff options
| author | Damien George <damien@micropython.org> | 2021-01-23 17:15:18 +1100 |
|---|---|---|
| committer | Damien George <damien@micropython.org> | 2021-01-24 14:56:40 +1100 |
| commit | 0a079155e46d588095e4419b1095fd4ae691ab50 (patch) | |
| tree | 9b0b9508d16771693818f7222a86ad9ea67f57a9 /.github/workflows | |
| parent | 45f0b6ab6300e75a17f6427ec45d812e072a9522 (diff) | |
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>
Diffstat (limited to '.github/workflows')
| -rw-r--r-- | .github/workflows/code_size.yml | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/.github/workflows/code_size.yml b/.github/workflows/code_size.yml index dd759a4f3..7570261e7 100644 --- a/.github/workflows/code_size.yml +++ b/.github/workflows/code_size.yml @@ -14,9 +14,11 @@ on: jobs: build: - runs-on: ubuntu-latest + runs-on: ubuntu-20.04 steps: - uses: actions/checkout@v2 + with: + fetch-depth: 100 - name: Install packages run: source tools/ci.sh && ci_code_size_setup - name: Build |
