2022-09-07 20:38:28 +00:00
|
|
|
name: asdf-firmware
|
|
|
|
push:
|
|
|
|
branches:
|
|
|
|
asdf-release
|
|
|
|
asdf-build-test
|
|
|
|
|
|
|
|
jobs:
|
|
|
|
build_firmware:
|
|
|
|
runs-on: ubuntu-latest
|
2022-09-08 02:56:24 +00:00
|
|
|
container: { image: alpine }
|
|
|
|
defaults:
|
|
|
|
run:
|
|
|
|
shell: sh
|
2022-09-07 20:38:28 +00:00
|
|
|
steps:
|
2022-09-08 02:56:24 +00:00
|
|
|
- name: install_git_and_bash
|
|
|
|
run: apk add bash git rsync
|
|
|
|
|
|
|
|
- name: checkout
|
|
|
|
uses: actions/checkout@v2
|
|
|
|
|
|
|
|
- run: apk add gcc-avr binutils-avr avr-libc
|
|
|
|
- run: apk add cmake make
|
|
|
|
- run: apk add python3 py3-pip
|
|
|
|
- run: pip install -U sphinx sphinx-rtd-theme sphinx-autodoc-typehints
|
|
|
|
- run: pip install -U sphinxcontrib-napoleon
|
|
|
|
- run: pip install -U toml
|
|
|
|
|
|
|
|
# Create the build directories, make all targets, and copy
|
|
|
|
# hex files to sphinx source directory for download links
|
|
|
|
- run: cd firmware/asdf; /bin/bash ./make-targets.sh -a -i -s
|
|
|
|
- run: mkdir public; touch public/.nojekyll
|
|
|
|
- run: sphinx-build -b html firmware/asdf/docs/source public
|
2022-09-07 20:38:28 +00:00
|
|
|
|
2022-09-08 02:56:24 +00:00
|
|
|
- name: Deploy
|
|
|
|
uses: JamesIves/github-pages-deploy-action@v4
|
|
|
|
with:
|
|
|
|
folder: public
|