From c1762605f5d2ed50782b9cc44c9111cfa8c1eb8b Mon Sep 17 00:00:00 2001 From: Daniel Thompson Date: Sat, 7 Nov 2020 09:38:08 +0000 Subject: [PATCH] Update prereqs for mcuboot imgtool.py Signed-off-by: Daniel Thompson --- .github/workflows/main.yml | 31 +++++++++++++++++++++++++------ 1 file changed, 25 insertions(+), 6 deletions(-) diff --git a/.github/workflows/main.yml b/.github/workflows/main.yml index 5177329..67691ff 100644 --- a/.github/workflows/main.yml +++ b/.github/workflows/main.yml @@ -8,7 +8,7 @@ on: jobs: build: - runs-on: ubuntu-latest + runs-on: ubuntu-20.04 steps: - name: Checkout files @@ -38,7 +38,7 @@ jobs: id: install-packages run: | 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 id: update-submodules @@ -59,11 +59,30 @@ jobs: make -j `nproc` VERSION=${{ github.sha }} dist mv ../wasp-os-${{ github.sha }}.tar.gz . - - name: Upload binaries + - name: Upload full binary distribution id: upload-binaries uses: actions/upload-artifact@v2 with: name: wasp-os-${{ github.sha }} - path: | - build-* - wasp-os-${{ github.sha }}.tar.gz + path: 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