Updated Root CNC v3 map and added Root CNC Pro map. Ref. issue #102. #418
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 for ESP32' | |
on: [push, pull_request] | |
jobs: | |
build: | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v1 | |
with: | |
submodules: recursive | |
- name: Build grblHAL | |
uses: docker://espressif/idf:release-v4.3 | |
with: | |
entrypoint: /opt/esp/entrypoint.sh | |
args: bash -c "idf.py build" | |
- name: Upload the build binary | |
uses: actions/upload-artifact@v2 | |
with: | |
name: grbl.bin | |
path: build/grbl.bin |