File tree Expand file tree Collapse file tree 1 file changed +5
-2
lines changed Expand file tree Collapse file tree 1 file changed +5
-2
lines changed Original file line number Diff line number Diff line change @@ -113,19 +113,22 @@ jobs:
113
113
- stable
114
114
target :
115
115
- thumbv7m-none-eabi
116
+ pins :
117
+ - nucleo
118
+ - default
116
119
steps :
117
120
- name : Checkout
118
121
uses : actions/checkout@v3
119
122
120
- - name : Install Rust ${{ matrix.toolchain }} with target (${{ matrix.target }})
123
+ - name : Install Rust ${{ matrix.toolchain }} with target (${{ matrix.target }}) and pins ${{ matrix.pins }}
121
124
run : |
122
125
rustup set profile minimal
123
126
rustup override set ${{ matrix.toolchain }}
124
127
rustup target add ${{ matrix.target }}
125
128
126
129
- name : Build example ${{ matrix.example.example }} for ${{ matrix.mcu }}
127
130
run : |
128
- cargo build --release --target=${{ matrix.target }} --example ${{ matrix.example.example}} --features ${{ matrix.mcu }},${{ matrix.example.features }}
131
+ STM32_ETH_EXAMPLE_PINS=${{ matrix.pins }} cargo build --release --target=${{ matrix.target }} --example ${{ matrix.example.example}} --features ${{ matrix.mcu }},${{ matrix.example.features }}
129
132
130
133
# Refs: https://github.com/rust-lang/crater/blob/9ab6f9697c901c4a44025cf0a39b73ad5b37d198/.github/workflows/bors.yml#L125-L149
131
134
#
You can’t perform that action at this time.
0 commit comments