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