Update prereqs for mcuboot imgtool.py
Signed-off-by: Daniel Thompson <daniel@redfelineninja.org.uk>
This commit is contained in:
parent
12ba849b15
commit
c1762605f5
1 changed files with 25 additions and 6 deletions
31
.github/workflows/main.yml
vendored
31
.github/workflows/main.yml
vendored
|
@ -8,7 +8,7 @@ on:
|
||||||
|
|
||||||
jobs:
|
jobs:
|
||||||
build:
|
build:
|
||||||
runs-on: ubuntu-latest
|
runs-on: ubuntu-20.04
|
||||||
|
|
||||||
steps:
|
steps:
|
||||||
- name: Checkout files
|
- name: Checkout files
|
||||||
|
@ -38,7 +38,7 @@ jobs:
|
||||||
id: install-packages
|
id: install-packages
|
||||||
run: |
|
run: |
|
||||||
sudo apt-get update
|
sudo apt-get update
|
||||||
sudo apt-get install -y python3-sphinx python3-recommonmark
|
sudo apt-get install -y python3-sphinx python3-recommonmark python3-cryptography python3-cbor
|
||||||
|
|
||||||
- name: Update submodules
|
- name: Update submodules
|
||||||
id: update-submodules
|
id: update-submodules
|
||||||
|
@ -59,11 +59,30 @@ jobs:
|
||||||
make -j `nproc` VERSION=${{ github.sha }} dist
|
make -j `nproc` VERSION=${{ github.sha }} dist
|
||||||
mv ../wasp-os-${{ github.sha }}.tar.gz .
|
mv ../wasp-os-${{ github.sha }}.tar.gz .
|
||||||
|
|
||||||
- name: Upload binaries
|
- name: Upload full binary distribution
|
||||||
id: upload-binaries
|
id: upload-binaries
|
||||||
uses: actions/upload-artifact@v2
|
uses: actions/upload-artifact@v2
|
||||||
with:
|
with:
|
||||||
name: wasp-os-${{ github.sha }}
|
name: wasp-os-${{ github.sha }}
|
||||||
path: |
|
path: wasp-os-${{ github.sha }}.tar.gz
|
||||||
build-*
|
|
||||||
wasp-os-${{ github.sha }}.tar.gz
|
- name: Upload pinetime binaries
|
||||||
|
id: upload-pinetime
|
||||||
|
uses: actions/upload-artifact@v2
|
||||||
|
with:
|
||||||
|
name: pinetime-${{ github.sha }}
|
||||||
|
path: build-pinetime
|
||||||
|
|
||||||
|
- name: Upload Colmi P8 binaries
|
||||||
|
id: upload-p8
|
||||||
|
uses: actions/upload-artifact@v2
|
||||||
|
with:
|
||||||
|
name: p8-${{ github.sha }}
|
||||||
|
path: build-p8
|
||||||
|
|
||||||
|
- name: Upload Senbono K9 binaries
|
||||||
|
id: upload-k9
|
||||||
|
uses: actions/upload-artifact@v2
|
||||||
|
with:
|
||||||
|
name: k9-${{ github.sha }}
|
||||||
|
path: build-k9
|
||||||
|
|
Loading…
Reference in a new issue