Skip to content

Commit 1d5c50e

Browse files
config/project.yml: Fix yaml file with latest update.
Signed-off-by: Ramya Subramanyam <[email protected]>
1 parent 202007f commit 1d5c50e

File tree

5 files changed

+20
-17
lines changed

5 files changed

+20
-17
lines changed

.github/workflows/hil_checks.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@ on:
55

66
jobs:
77
makers-devops:
8-
uses: Infineon/makers-devops/.github/workflows/hil_checks.yml@main
8+
uses: Infineon/makers-devops/.github/workflows/hil_checks.yml@fix-hil-test
99
with:
1010
project-yaml: config/project.yml
1111
user-yaml: config/user.yml

README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22

33
<!-- PROJECT SHIELDS -->
44
[![compile examples](https://github.com/Infineon/arduino-core-psoc6/actions/workflows/compile_examples.yml/badge.svg)](https://github.com/Infineon/arduino-core-psoc6/actions/workflows/compile_examples.yml)
5-
[![HIL test](https://github.com/Infineon/arduino-core-psoc6/actions/workflows/hil_unity_checks.yml/badge.svg)](https://github.com/Infineon/arduino-core-psoc6/actions/workflows/hil_unity_checks.yml)
5+
[![HIL test](https://github.com/Infineon/arduino-core-psoc6/actions/workflows/hil_checks.yml/badge.svg)](https://github.com/Infineon/arduino-core-psoc6/actions/workflows/hil_unity_checks.yml)
66
[![code format check](https://github.com/Infineon/arduino-core-psoc6/actions/workflows/code_formatting.yml/badge.svg)](https://github.com/Infineon/arduino-core-psoc6/actions/workflows/code_formatting.yml)
77
[![code spell check](https://github.com/Infineon/arduino-core-psoc6/actions/workflows/codespell.yml/badge.svg)](https://github.com/Infineon/arduino-core-psoc6/actions/workflows/codespell.yml)
88
[![commit message check](https://github.com/Infineon/arduino-core-psoc6/actions/workflows/commit_formatting.yml/badge.svg)](https://github.com/Infineon/arduino-core-psoc6/actions/workflows/commit_formatting.yml)

config/project.yml

Lines changed: 16 additions & 13 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,7 @@
11
options:
2+
SEND_JOB_START_TOKEN: true
3+
PARSER_START_TOKEN: Unity test run
4+
PARSER_END_TOKEN: "^OK|^FAIL"
25
USE_CORE:
36
name: local
47
url: http://blabla
@@ -57,85 +60,85 @@ code-quality:
5760
unit-test:
5861
unit-test-digital-io:
5962
- description: Compiling, flashing and monitoring digital IO unit test.
60-
command: make test_digitalio_single
63+
command: make test_digitalio_single UNITY_PATH=/opt/Unity
6164
query: digital_io_single_board == '1:1'
6265
working_dir: extras/arduino-core-tests
6366
options:
6467
SEND_JOB_START_TOKEN: false
6568

6669
unit-test-tone:
6770
- description: Compiling, flashing and monitoring digital IO unit test.
68-
command: make test_digitalio_single
71+
command: make test_tone_no_tone UNITY_PATH=/opt/Unity
6972
query: tone_no_tone_single_board == '1:1'
7073
working_dir: extras/arduino-core-tests
7174
options:
7275
SEND_JOB_START_TOKEN: false
7376

7477
unit-test-interrupts:
7578
- description: Compiling, flashing and monitoring Interrupts unit test.
76-
command: make test_interrupts_single
79+
command: make test_interrupts_single UNITY_PATH=/opt/Unity
7780
query: interrupts_single_board == '1:1'
7881
working_dir: extras/arduino-core-tests
7982
options:
8083
SEND_JOB_START_TOKEN: false
8184

8285
unit-test-random:
8386
- description: Compiling, flashing and monitoring Interrupts unit test.
84-
command: make test_random
87+
command: make test_random UNITY_PATH=/opt/Unity
8588
query: random_single_board == '1:1'
8689
working_dir: extras/arduino-core-tests
8790
options:
8891
SEND_JOB_START_TOKEN: false
8992

9093
unit-test-time:
9194
- description: Compiling, flashing and monitoring Time unit test.
92-
command: make test_time_single
95+
command: make test_time_single UNITY_PATH=/opt/Unity
9396
query: time_single_board == '1:1'
9497
working_dir: extras/arduino-core-tests
9598
options:
9699
SEND_JOB_START_TOKEN: false
97100

98101
unit-test-iic-pingpong:
99102
- description: Compiling, flashing and monitoring I2C pingpong master unit test.
100-
command: make test_wire_connected2_masterpingpong
101-
query: iic_ping_pong_multiple_boards_master == '1:1'
103+
command: make test_wire_connected2_slavepingpong UNITY_PATH=/opt/Unity
104+
query: iic_ping_pong_multiple_boards_slave == '1:1'
102105
working_dir: extras/arduino-core-tests
103106
options:
104107
SEND_JOB_START_TOKEN: true
105108

106109
- description: Compiling, flashing and monitoring I2C pingpong slave unit test.
107-
command: make test_wire_connected2_slavepingpong
108-
query: iic_ping_pong_multiple_boards_slave == '1:1'
110+
command: make test_wire_connected2_masterpingpong UNITY_PATH=/opt/Unity
111+
query: iic_ping_pong_multiple_boards_master == '1:1'
109112
working_dir: extras/arduino-core-tests
110113
options:
111114
SEND_JOB_START_TOKEN: true
112115

113116
unit-test-spi-pingpong:
114117
- description: Compiling, flashing and monitoring SPI pingpong slave unit test.
115-
command: make test_spi_connected2_slavepingpong
118+
command: make test_spi_connected2_slavepingpong UNITY_PATH=/opt/Unity
116119
query: spi_ping_pong_multiple_boards_slave == '1:1'
117120
working_dir: extras/arduino-core-tests
118121
options:
119122
SEND_JOB_START_TOKEN: true
120123

121124
- description: Compiling, flashing and monitoring SPI pingpong master unit test.
122-
command: make test_spi_connected2_masterpingpong
125+
command: make test_spi_connected2_masterpingpong UNITY_PATH=/opt/Unity
123126
query: spi_ping_pong_multiple_boards_master == '1:1'
124127
working_dir: extras/arduino-core-tests
125128
options:
126129
SEND_JOB_START_TOKEN: true
127130

128131
unit-test-spi-loopback:
129132
- description: Compiling, flashing and monitoring SPI loopback unit test.
130-
command: make test_spi_connected1_loopback
133+
command: make test_spi_connected1_loopback UNITY_PATH=/opt/Unity
131134
query: spi_ping_pong_single_board == '1:1'
132135
working_dir: extras/arduino-core-tests
133136
options:
134137
SEND_JOB_START_TOKEN: true
135138

136139
unit-test-iic-single-board:
137140
- description: Compiling, flashing and monitoring I2C single board unit test.
138-
command: make test_wire_connected1_pingpong
141+
command: make test_wire_connected1_pingpong UNITY_PATH=/opt/Unity
139142
query: iic_ping_pong_single_board == '1:1'
140143
working_dir: extras/arduino-core-tests
141144
options:

0 commit comments

Comments
 (0)