Commented out 'make debug' section, coz it won't fit attiny10 part & build fails. #2
Workflow file for this run
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: Makefile CI | |
on: | |
push: | |
branches: [ "master" ] | |
pull_request: | |
branches: [ "master" ] | |
jobs: | |
build: | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v3 | |
- name: install avr-gcc | |
run: sudo apt install -y gcc-avr avr-libc | |
- name: build project | |
run: make | |
#- name: make debug | |
# run: make debug | |
- name: make disasm | |
run: make disasm | |
- name: output disasm listing | |
run: cat autolight.lss |