Found second I2C bus for TEA6840H NICE only #184
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 all tests | |
on: [push, pull_request] | |
jobs: | |
build: | |
runs-on: ubuntu-22.04 | |
strategy: | |
fail-fast: false | |
matrix: | |
python-version: [3.8, 3.9, "3.10"] | |
steps: | |
- uses: actions/checkout@v3 | |
- name: Set up Python ${{ matrix.python-version }} | |
uses: actions/setup-python@v4 | |
with: | |
python-version: ${{ matrix.python-version }} | |
- name: Install arm-gcc | |
run: | | |
sudo apt-get install gcc-arm-none-eabi libnewlib-arm-none-eabi | |
- name: Install avr-gcc | |
run: | | |
sudo apt-get install -y binutils-avr gcc-avr avr-libc | |
- name: Install asxxxx | |
run: | | |
wget --no-verbose https://github.com/6502org/6502.org/raw/74f5d0c0f9b73d5e353bde7b3b25ea7f43b527a1/public/tools/asm/asxs5p50.zip | |
unzip -q asxs5p50.zip | |
make -C asxv5pxx/asxmak/linux/build all | |
echo "$PWD/asxv5pxx/asxmak/linux/build" >> $GITHUB_PATH | |
- name: Install srecord | |
run: sudo apt-get install srecord | |
- name: Run all tests | |
run: | | |
python faceplate_emulator/host/setup.py test -q | |
make -C faceplate_emulator/firmware | |
make -C kwp1281_tool/firmware | |
make -C reverse_engineering/clarion/vw_premium_4/disasm/pu1666a_mainmcu | |
make -C reverse_engineering/clarion/vw_premium_4/disasm/pu1666a_submcu | |
make -C reverse_engineering/delco/seat_liceo/disasm | |
make -C reverse_engineering/delco/vw_premium_5/disasm | |
make -C reverse_engineering/delco/vw_premium_5/custom/dumpram | |
make -C reverse_engineering/delco/vw_premium_5/custom/faultcodes | |
make -C reverse_engineering/delco/vw_premium_5/custom/loopback_irq | |
make -C reverse_engineering/delco/vw_premium_5/custom/loopback_poll | |
make -C reverse_engineering/delco/vw_premium_5/custom/serial_tx_led | |
make -C reverse_engineering/technisat/vw_gamma_5/disasm | |
make -C reverse_engineering/technisat/vw_rhapsody/disasm | |
make -C tape_emulator/firmware | |
make -C volume_monitor/firmware |