Skip to content

Commit a1c23c2

Browse files
committed
Fixing workflow file.
1 parent 599a6b9 commit a1c23c2

File tree

1 file changed

+28
-25
lines changed

1 file changed

+28
-25
lines changed

.github/workflows/main.yml

+28-25
Original file line numberDiff line numberDiff line change
@@ -10,36 +10,36 @@ on:
1010
pull_request:
1111
branches: [ master ]
1212

13-
strategy:
14-
matrix:
15-
target:
16-
- inemom1/accelero
17-
- inemom1/gyro
18-
- inemom1/leds
19-
- inemom1/pwm
20-
- stm32f4discovery/accel
21-
- stm32f4discovery/audio
22-
- stm32f4discovery/leds
23-
- stm32f4discovery/skel
24-
- stm32f4discovery/timerirq
25-
- stm32f429discovery/adcdma
26-
- stm32f429discovery/adcpolling
27-
- stm32f429discovery/button
28-
- stm32f429discovery/gyro
29-
- stm32f429discovery/leds
30-
- stm32f429discovery/spimaster
31-
- stm32f429discovery/spislave
32-
- stm32f429discovery/timerirq
33-
- stm32f429discovery/timerpwm
34-
- mbed-lpc1768/leds
35-
3613
# A workflow run is made up of one or more jobs that can run sequentially or in parallel
3714
jobs:
3815
# This workflow contains a single job called "build"
3916
build:
4017
# The type of runner that the job will run on
4118
runs-on: ubuntu-latest
42-
19+
20+
strategy:
21+
matrix:
22+
target:
23+
- inemom1/accelero
24+
- inemom1/gyro
25+
- inemom1/leds
26+
- inemom1/pwm
27+
- stm32f4discovery/accel
28+
- stm32f4discovery/audio
29+
- stm32f4discovery/leds
30+
- stm32f4discovery/skel
31+
- stm32f4discovery/timerirq
32+
- stm32f429discovery/adcdma
33+
- stm32f429discovery/adcpolling
34+
- stm32f429discovery/button
35+
- stm32f429discovery/gyro
36+
- stm32f429discovery/leds
37+
- stm32f429discovery/spimaster
38+
- stm32f429discovery/spislave
39+
- stm32f429discovery/timerirq
40+
- stm32f429discovery/timerpwm
41+
- mbed-lpc1768/leds
42+
4343
container:
4444
image: grumpycoders/uc-sdk-build-env:latest
4545
env:
@@ -50,6 +50,9 @@ jobs:
5050
# Checks-out your repository under $GITHUB_WORKSPACE, so your job can access it
5151
- uses: actions/checkout@v2
5252

53+
- name: ls
54+
run: ls -R
55+
5356
# Runs a single command using the runners shell
5457
- name: Build
55-
run: make -C /uC-sdk/examples/$TARGET
58+
run: make -C examples/$TARGET

0 commit comments

Comments
 (0)