Add ILI9488 and 18-bit pixel format support #26
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
name: C/C++ CI | |
on: | |
push: | |
jobs: | |
build: | |
runs-on: ubuntu-latest | |
steps: | |
- name: Checkout repository | |
uses: actions/checkout@v4 | |
- name: Install compiler | |
run: | | |
sudo apt-get -y install gcc-arm-none-eabi | |
- name: Build firmwares | |
run: | | |
./build_all.sh | |
- name: Store build artifacts | |
uses: actions/upload-artifact@v4 | |
with: | |
name: ampcontrol-f103-firmwares-${{ github.sha }} | |
path: | | |
src/flash |