Skip to content

Commit

Permalink
update build
Browse files Browse the repository at this point in the history
  • Loading branch information
= committed Dec 21, 2024
1 parent 9aea91f commit 43c19f2
Showing 1 changed file with 14 additions and 5 deletions.
19 changes: 14 additions & 5 deletions .github/workflows/continuous-build.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -16,12 +16,21 @@ jobs:
- name: Install Rust
run: |
curl --proto '=https' --tlsv1.2 -sSf https://sh.rustup.rs | sh -s -- -y
apt-get install libftdi1 libftdi1-dev -y
- name: Cargo Build
run: cargo build
run: |
source "$HOME"/.cargo/env
cargo build
- name: Cargo Build Dev
run: cargo build --no-default-features --features=dev
run: |
source "$HOME"/.cargo/env
cargo build --no-default-features --features=dev
- name: Cargo Build Default
run: cargo build --features default
- name: Cargo build Prod
run: cargo build --features prod
run: |
source "$HOME"/.cargo/env
cargo build --features default
- name: Cargo Build Prod
run: |
source "$HOME"/.cargo/env
cargo build --features prod

0 comments on commit 43c19f2

Please sign in to comment.