File tree Expand file tree Collapse file tree 1 file changed +13
-9
lines changed Expand file tree Collapse file tree 1 file changed +13
-9
lines changed Original file line number Diff line number Diff line change @@ -5,13 +5,7 @@ on: [push]
5
5
jobs :
6
6
build :
7
7
8
- runs-on : ${{ matrix.os }}
9
- strategy :
10
- matrix :
11
- os : [ubuntu-latest]
12
- example_4 : [examples/hardware_specific_examples/Teensy/Teensy4/bldc_driver_6pwm_standalone/bldc_driver_6pwm_standalone.ino, examples/hardware_specific_examples/Teensy/Teensy4/open_loop_velocity_6pwm/open_loop_velocity_6pwm.ino]
13
- example_3 : [examples/hardware_specific_examples/Teensy/Teensy3/bldc_driver_6pwm_standalone/bldc_driver_6pwm_standalone.ino, examples/hardware_specific_examples/Teensy/Teensy3/open_loop_velocity_6pwm/open_loop_velocity_6pwm.ino]
14
-
8
+ runs-on : ubuntu-latest
15
9
steps :
16
10
- uses : actions/checkout@v3
17
11
- uses : actions/cache@v3
29
23
- name : PIO Run Teensy 4
30
24
run : pio ci --lib="." --board=teensy41 --board=teensy40
31
25
env :
32
- PLATFORMIO_CI_SRC : ${{ matrix.example_4 }}
26
+ PLATFORMIO_CI_SRC : examples/hardware_specific_examples/Teensy/Teensy4/bldc_driver_6pwm_standalone/bldc_driver_6pwm_standalone.ino
27
+
28
+ - name : PIO Run Teensy 4
29
+ run : pio ci --lib="." --board=teensy41 --board=teensy40
30
+ env :
31
+ PLATFORMIO_CI_SRC : examples/hardware_specific_examples/Teensy/Teensy4/open_loop_velocity_6pwm/open_loop_velocity_6pwm.ino
33
32
34
33
- name : PIO Run Teensy 3
35
34
run : pio ci --lib="." --board=teensy31 --board=teensy30 --board=teensy35 --board=teensy36
36
35
env :
37
- PLATFORMIO_CI_SRC : ${{ matrix.example_3 }}
36
+ PLATFORMIO_CI_SRC : examples/hardware_specific_examples/Teensy/Teensy3/bldc_driver_6pwm_standalone/bldc_driver_6pwm_standalone.ino
37
+
38
+ - name : PIO Run Teensy 3
39
+ run : pio ci --lib="." --board=teensy31 --board=teensy30 --board=teensy35 --board=teensy36
40
+ env :
41
+ PLATFORMIO_CI_SRC : examples/hardware_specific_examples/Teensy/Teensy3/open_loop_velocity_6pwm/open_loop_velocity_6pwm.ino
You can’t perform that action at this time.
0 commit comments