diff options
| author | Daniel Thompson <daniel@redfelineninja.org.uk> | 2020-11-07 09:38:08 (GMT) |
|---|---|---|
| committer | Daniel Thompson <daniel@redfelineninja.org.uk> | 2020-11-07 09:49:17 (GMT) |
| commit | c1762605f5d2ed50782b9cc44c9111cfa8c1eb8b (patch) | |
| tree | 49ec172c6cc5dc5b17d4ee0fa8137720f76014dc /.github | |
| parent | 12ba849b1527fc29def977098ab5c18cb40a140d (diff) | |
Update prereqs for mcuboot imgtool.py
Signed-off-by: Daniel Thompson <daniel@redfelineninja.org.uk>
Diffstat (limited to '.github')
| -rw-r--r-- | .github/workflows/main.yml | 31 |
1 files 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 |
