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]
|
||||
|
||||
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:
|
||||
|
|
Loading…
Reference in a new issue