Only build serial reader for now

This commit is contained in:
hodasemi 2023-08-25 12:54:46 +02:00
parent 6539e6695c
commit 98700aa83d

View file

@ -6,35 +6,35 @@ on:
types: [opened, reopened, edited, review_requested, synchronize]
jobs:
Arduino:
steps:
- uses: https://github.com/actions/checkout@v3
# Arduino:
# steps:
# - uses: https://github.com/actions/checkout@v3
- uses: https://github.com/dtolnay/rust-toolchain@stable
# - uses: https://github.com/dtolnay/rust-toolchain@stable
- name: Install dependencies
run: |
apt-get update
apt-get install --no-install-recommends -y gcc-avr
# - name: Install dependencies
# run: |
# apt-get update
# apt-get install --no-install-recommends -y gcc-avr
- name: Build
run: |
cd rust/arduino
cargo build
# - name: Build
# run: |
# cd rust/arduino
# cargo build
Pico:
steps:
- uses: https://github.com/actions/checkout@v3
# Pico:
# steps:
# - uses: https://github.com/actions/checkout@v3
- uses: https://github.com/dtolnay/rust-toolchain@stable
# - uses: https://github.com/dtolnay/rust-toolchain@stable
- name: Install flip-link
run: cargo install flip-link
# - name: Install flip-link
# run: cargo install flip-link
- name: Build
run: |
cd rust/pico
cargo build
# - name: Build
# run: |
# cd rust/pico
# cargo build
Serial Reader:
steps:
@ -46,7 +46,7 @@ jobs:
run: |
apt-get update
apt-get install --no-install-recommends -y libpango1.0-dev libgtk-3-dev libudev-dev
- name: Build
run: |
cd rust/serial_reader