Merge branch 'master' of https://github.com/daniel-thompson/wasp-os
This commit is contained in:
commit
12ba849b15
3 changed files with 76 additions and 2 deletions
69
.github/workflows/main.yml
vendored
Normal file
69
.github/workflows/main.yml
vendored
Normal file
|
@ -0,0 +1,69 @@
|
|||
name: wasp-os binary distribution
|
||||
|
||||
on:
|
||||
push:
|
||||
branches: [ master ]
|
||||
pull_request:
|
||||
branches: [ master ]
|
||||
|
||||
jobs:
|
||||
build:
|
||||
runs-on: ubuntu-latest
|
||||
|
||||
steps:
|
||||
- name: Checkout files
|
||||
id: checkout-files
|
||||
uses: actions/checkout@v2
|
||||
|
||||
- name: Check the cached arm-none-eabi-gcc compiler
|
||||
id: cache-toolchain
|
||||
uses: actions/cache@v2
|
||||
env:
|
||||
cache-name: cache-toolchain
|
||||
with:
|
||||
path: ${{ runner.temp }}/arm-none-eabi
|
||||
key: ${{ runner.os }}-build-${{ env.cache-name }}
|
||||
restore-keys: ${{ runner.os }}-build-${{ env.cache-name }}
|
||||
|
||||
- name: Install arm-none-eabi-gcc
|
||||
id: install-toolchain
|
||||
# installs arm-none-eabi if the CI environment can't find it in the cache
|
||||
if: steps.cache-toolchain.outputs.cache-hit != 'true'
|
||||
uses: fiam/arm-none-eabi-gcc@v1.0.2
|
||||
with:
|
||||
release: 9-2019-q4
|
||||
directory: ${{ runner.temp }}/arm-none-eabi
|
||||
|
||||
- name: Install packages
|
||||
id: install-packages
|
||||
run: |
|
||||
sudo apt-get update
|
||||
sudo apt-get install -y python3-sphinx python3-recommonmark
|
||||
|
||||
- name: Update submodules
|
||||
id: update-submodules
|
||||
run: |
|
||||
export PATH=$PATH:${{ runner.temp }}/arm-none-eabi/bin
|
||||
make -j `nproc` submodules
|
||||
|
||||
- name: Download softdevice
|
||||
id: download-softdevice
|
||||
run: |
|
||||
export PATH=$PATH:${{ runner.temp }}/arm-none-eabi/bin
|
||||
make -j `nproc` softdevice
|
||||
|
||||
- name: Build wasp-os binary distribution
|
||||
id: binary-distribution
|
||||
run: |
|
||||
export PATH=$PATH:${{ runner.temp }}/arm-none-eabi/bin
|
||||
make -j `nproc` VERSION=${{ github.sha }} dist
|
||||
mv ../wasp-os-${{ github.sha }}.tar.gz .
|
||||
|
||||
- name: Upload binaries
|
||||
id: upload-binaries
|
||||
uses: actions/upload-artifact@v2
|
||||
with:
|
||||
name: wasp-os-${{ github.sha }}
|
||||
path: |
|
||||
build-*
|
||||
wasp-os-${{ github.sha }}.tar.gz
|
7
Makefile
7
Makefile
|
@ -22,8 +22,13 @@ clean :
|
|||
micropython/ports/nrf/build-$(BOARD)-s132 \
|
||||
wasp/boards/$(BOARD)/watch.py
|
||||
|
||||
# Avoid a recursive update... it grabs far too much
|
||||
submodules :
|
||||
git submodule update --init --recursive
|
||||
git submodule update --init
|
||||
(cd bootloader; git submodule update --init)
|
||||
(cd micropython/ports/nrf; $(MAKE) submodules)
|
||||
(cd reloader; git submodule update --init)
|
||||
(cd wasp/modules/bma42x-upy; git submodule update --init)
|
||||
|
||||
bootloader: build-$(BOARD_SAFE)
|
||||
$(RM) bootloader/_build-$(BOARD)_nrf52832//$(BOARD)_nrf52832_bootloader-*-nosd.hex
|
||||
|
|
|
@ -20,7 +20,7 @@ following commands:
|
|||
|
||||
sudo apt install \
|
||||
git build-essential libsdl2-2.0.0 python3-click python3-numpy \
|
||||
python3-pexpect python3-pil python3-pip python3-serial
|
||||
python3-pexpect python3-pil python3-pip python3-serial unzip
|
||||
pip3 install --user pysdl2
|
||||
|
||||
Additionally if you wish to regenerate the documentation you will require
|
||||
|
|
Loading…
Reference in a new issue