-
Notifications
You must be signed in to change notification settings - Fork 10
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
1 parent
1589f72
commit a7c181c
Showing
14 changed files
with
59 additions
and
165 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,17 +1,17 @@ | ||
export SSID := "Dummy" | ||
export PASSWORD := "Dummy" | ||
|
||
all: (check "xtensa-esp32-none-elf" "esp32" "esp") (check "xtensa-esp32s3-none-elf" "esp32s3" "esp") (check "riscv32imc-unknown-none-elf" "esp32c3" "nightly") | ||
all: (check "esp32" "esp") (check "esp32s3" "esp") (check "esp32c3" "nightly") | ||
cd esp-mbedtls && cargo +nightly fmt --all -- --check | ||
|
||
[private] | ||
check target arch toolchain: | ||
cargo +{{ toolchain }} build --target {{ target }} --example sync_client --features {{ arch }} | ||
cargo +{{ toolchain }} build --target {{ target }} --example sync_client_mTLS --features {{ arch }} | ||
cargo +{{ toolchain }} build --target {{ target }} --example async_client --features="async {{ arch }}" | ||
cargo +{{ toolchain }} build --target {{ target }} --example async_client_mTLS --features="async {{ arch }}" | ||
cargo +{{ toolchain }} build --target {{ target }} --example sync_server --features {{ arch }} | ||
cargo +{{ toolchain }} build --target {{ target }} --example sync_server_mTLS --features {{ arch }} | ||
cargo +{{ toolchain }} build --target {{ target }} --example async_server --features="async {{ arch }}" | ||
cargo +{{ toolchain }} build --target {{ target }} --example async_server_mTLS --features="async {{ arch }}" | ||
check arch toolchain: | ||
cargo +{{ toolchain }} b{{ arch }} --example sync_client | ||
cargo +{{ toolchain }} b{{ arch }} --example sync_client_mTLS | ||
cargo +{{ toolchain }} b{{ arch }} --example async_client --features="async" | ||
cargo +{{ toolchain }} b{{ arch }} --example async_client_mTLS --features="async" | ||
cargo +{{ toolchain }} b{{ arch }} --example sync_server | ||
cargo +{{ toolchain }} b{{ arch }} --example sync_server_mTLS | ||
cargo +{{ toolchain }} b{{ arch }} --example async_server --features="async" | ||
cargo +{{ toolchain }} b{{ arch }} --example async_server_mTLS --features="async" | ||
cargo +{{ toolchain }} fmt --all -- --check |