Have ColormapOverlay support blank keys #2148
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: Build | |
on: [push, pull_request] | |
env: | |
LC_ALL: C | |
ARDUINO_DIRECTORIES_USER: ${{ github.workspace }}/.arduino/user | |
CLANG_FORMAT_CMD: clang-format-15 | |
jobs: | |
smoke-sketches: | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v4 | |
- name: Cache arduino dep downloads | |
uses: actions/cache@v4 | |
with: | |
path: ${{ github.workspace}}/.arduino/downloads | |
key: ${{ runner.os }}-arduino-downloads | |
- run: make setup | |
- run: KALEIDOSCOPE_TEMP_PATH=${{ github.workspace}}/.kaleidoscope-temp make -j $(nproc) smoke-sketches | |
run-simulator-tests: | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v4 | |
- name: Cache arduino dep downloads | |
uses: actions/cache@v4 | |
with: | |
path: ${{ github.workspace}}/.arduino/downloads | |
key: ${{ runner.os }}-arduino-downloads | |
- run: sudo apt update | |
- name: ccache | |
uses: hendrikmuhs/[email protected] | |
- run: make setup | |
- run: KALEIDOSCOPE_CCACHE=1 make -j $(nproc) --output-sync=recurse simulator-tests | |
check-code-style: | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v4 | |
- run: KALEIDOSCOPE_CODE_FORMATTER=clang-format-15 make check-code-style | |
check-shellcheck: | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v4 | |
- run: make shellcheck | |
check-cpplint: | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v4 | |
- run: make cpplint | |
find-filename-conflicts: | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v4 | |
- run: make find-filename-conflicts | |
publish-arduino-package-on-every-commit: | |
runs-on: ubuntu-latest | |
if: github.ref == 'refs/heads/master' | |
steps: | |
- uses: actions/checkout@v4 | |
- uses: webfactory/[email protected] | |
with: | |
ssh-private-key: ${{ secrets.SSH_PRIVATE_KEY_DEPLOY }} | |
- run: git config --global user.email "[email protected]" | |
- run: git config --global user.name "Automated release publisher" | |
- run: make setup | |
- run: make build-arduino-nightly-package |