update to latest simavr from buserror #494
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: Run tests with simavr | |
on: | |
push: | |
branches: [ master ] | |
pull_request: | |
branches: [ master ] | |
jobs: | |
build: | |
runs-on: ubuntu-20.04 | |
steps: | |
- uses: actions/checkout@v4 | |
- name: get platformio | |
run: curl -fsSL https://raw.githubusercontent.com/platformio/platformio-core-installer/master/get-platformio.py -o get-platformio.py | |
- name: install platformio | |
run: python3 get-platformio.py | |
- name: install platform atmelavr | |
run: ~/.platformio/penv/bin/pio platform install "atmelavr" | |
- name: update packages | |
run: sudo apt update -y | |
- name: install lib elf | |
run: sudo apt install -y libelf-dev | |
- name: make links | |
run: make -C extras/tests/simavr_based links makefiles | |
- name: make | |
run: make SILENCE=1 -C extras/tests/simavr_based |