Skip to content

Commit

Permalink
update artifact
Browse files Browse the repository at this point in the history
  • Loading branch information
matth-x committed Sep 2, 2024
1 parent 8adde26 commit 3a6699f
Showing 1 changed file with 26 additions and 8 deletions.
34 changes: 26 additions & 8 deletions .github/workflows/documentation.yml
Original file line number Diff line number Diff line change
Expand Up @@ -93,16 +93,34 @@ jobs:
if-no-files-found: error

evaluate_firmware_size:
needs: fake_artifact
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- uses: actions/setup-python@v4
with:
python-version: 3.x
- uses: actions/cache@v2
with:
key: ${{ github.ref }}
path: .cache
- uses: actions/checkout@v3
- name: Cache pip
uses: actions/cache@v2
with:
path: ~/.cache/pip
key: ${{ runner.os }}-pip-${{ hashFiles('**/requirements.txt') }}
restore-keys: |
${{ runner.os }}-pip-
- uses: actions/setup-python@v4
with:
python-version: 3.x
- uses: actions/cache@v2
with:
key: ${{ github.ref }}
path: .cache
- name: Install Python dependencies
run: |
python -m pip install --upgrade pip
pip install --upgrade pandas
- name: Get v16 bloaty file
uses: actions/download-artifact@v4
with:
name: firmware_v16_2.elf
path: docs/assets/bloaty_v16.csv


deploy:
runs-on: ubuntu-latest
Expand Down

0 comments on commit 3a6699f

Please sign in to comment.