Skip to content

Commit 5b63142

Browse files
committed
fix(build): broken indentation
1 parent 50ae514 commit 5b63142

File tree

2 files changed

+25
-16
lines changed

2 files changed

+25
-16
lines changed

.github/workflows/build.yml

Lines changed: 16 additions & 16 deletions
Original file line numberDiff line numberDiff line change
@@ -48,21 +48,21 @@ jobs:
4848
run: cargo deny check advisories
4949
working-directory: $crate-path
5050

51-
test:
52-
name: Run Host Tests
53-
runs-on: ubuntu-latest
54-
env:
55-
# NOTE: Unsure why this is here
56-
RUST_MIN_STACK: 8388608
57-
steps:
58-
- name: Checkout
59-
uses: actions/checkout@v2
51+
test:
52+
name: Run Host Tests
53+
runs-on: ubuntu-latest
54+
env:
55+
# NOTE: Unsure why this is here
56+
RUST_MIN_STACK: 8388608
57+
steps:
58+
- name: Checkout
59+
uses: actions/checkout@v2
6060

61-
- name: Setup Rust Environment (Cached)
62-
uses: ./.github/actions/common/setup-rust-environment/
61+
- name: Setup Rust Environment (Cached)
62+
uses: ./.github/actions/common/setup-rust-environment/
6363

64-
name: "Run Host Tests"
65-
- uses: actions-rs/cargo@v1
66-
with:
67-
command: make
68-
args: test-host
64+
name: "Run Host Tests"
65+
- uses: actions-rs/cargo@v1
66+
with:
67+
command: make
68+
args: test-host

boards/argus/.cargo/config.toml

Lines changed: 9 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,9 @@
1+
[target.'cfg(all(target_arch = "arm", target_os = "none"))']
2+
runner = "probe-rs run --chip STM32H733VGTx --protocol swd"
3+
rustflags = ["-C", "link-arg=-Tlink.x", "-C", "link-arg=-Tdefmt.x"]
4+
5+
[env]
6+
DEFMT_LOG = "debug"
7+
8+
[build]
9+
target = "thumbv7em-none-eabihf"

0 commit comments

Comments
 (0)