Only build serial reader for now
This commit is contained in:
parent
6539e6695c
commit
98700aa83d
1 changed files with 23 additions and 23 deletions
|
@ -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:
|
||||||
|
|
Loading…
Reference in a new issue