Skip to content

Commit aafbd51

Browse files
committed
gha: fix BUILD_TYPE in vpp test actions
- also, pin workflows to latest test actions Type: ci Change-Id: I3b14f1cc3e044d4c7e9bb5ae2f962e8bf93029e7 Signed-off-by: Dave Wallace <dwallacelf@gmail.com>
1 parent 2ed41cc commit aafbd51

File tree

7 files changed

+9
-9
lines changed

7 files changed

+9
-9
lines changed

.github/actions/vpp-hst-test/action.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,7 @@ inputs:
1414
required: true
1515
type: string
1616
BUILD_TYPE:
17-
description: "Type of build: debug (dbg) or release (rel)"
17+
description: "Type of build: debug or release"
1818
required: true
1919
type: string
2020
HS_TEST_DIR:
@@ -90,7 +90,7 @@ runs:
9090
}
9191
9292
check_for_core_files || true
93-
if [ "${{ inputs.BUILD_TYPE }}" == "dbg" ] ; then
93+
if [ "${{ inputs.BUILD_TYPE }}" == "debug" ] ; then
9494
hst_debug_build_run || true
9595
else
9696
hst_build_run || true

.github/actions/vpp-make-test/action.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,7 @@ inputs:
1414
required: true
1515
type: string
1616
BUILD_TYPE:
17-
description: "Type of build: debug (dbg) or release (rel)"
17+
description: "Type of build: debug or release"
1818
required: true
1919
type: string
2020
TEST_JOBS:
@@ -88,7 +88,7 @@ runs:
8888
mkdir -p $LOG_DIR
8989
LOG_FILE="$LOG_DIR/maketest.log"
9090
{
91-
if [ "$BUILD_TYPE" == "dbg" ] ; then
91+
if [ "$BUILD_TYPE" == "debug" ] ; then
9292
TEST_TARGET="test-debug"
9393
else
9494
TEST_TARGET="test"

.github/workflows/periodic-vpp-verify-hst.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -148,7 +148,7 @@ jobs:
148148

149149
- name: HST Test VPP
150150
if: success()
151-
uses: fdio/vpp/.github/actions/vpp-hst-test@7598c9acb6bc034ffbe25b7110230b3d243a9b36
151+
uses: fdio/vpp/.github/actions/vpp-hst-test@0b2ad4fb479a2e4b03adb05089895c90f4281a60
152152
timeout-minutes: 90
153153
with:
154154
LOG_DIR: ${{ env.LOG_DIR }}

.github/workflows/vpp-merge-maketest.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -280,7 +280,7 @@ jobs:
280280

281281
- name: VPP Make Test
282282
# yamllint disable-line rule:line-length
283-
uses: fdio/vpp/.github/actions/vpp-make-test@970ed8ecbe252fb5384e72141397e42fd9f127af
283+
uses: fdio/vpp/.github/actions/vpp-make-test@0b2ad4fb479a2e4b03adb05089895c90f4281a60
284284
timeout-minutes: 120
285285
with:
286286
LOG_DIR: ${{ env.LOG_DIR }}

.github/workflows/vpp-verify-gcc.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -235,7 +235,7 @@ jobs:
235235

236236
- name: VPP Make Test with GCC/GCOV
237237
# yamllint disable-line rule:line-length
238-
uses: fdio/vpp/.github/actions/vpp-make-test@970ed8ecbe252fb5384e72141397e42fd9f127af
238+
uses: fdio/vpp/.github/actions/vpp-make-test@0b2ad4fb479a2e4b03adb05089895c90f4281a60
239239
timeout-minutes: 120
240240
with:
241241
WORKSPACE: ${{ env.WORKSPACE }}

.github/workflows/vpp-verify-hst.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -216,7 +216,7 @@ jobs:
216216

217217
- name: HST Test VPP
218218
if: success()
219-
uses: fdio/vpp/.github/actions/vpp-hst-test@7598c9acb6bc034ffbe25b7110230b3d243a9b36
219+
uses: fdio/vpp/.github/actions/vpp-hst-test@0b2ad4fb479a2e4b03adb05089895c90f4281a60
220220
timeout-minutes: 90
221221
with:
222222
LOG_DIR: ${{ env.LOG_DIR }}

.github/workflows/vpp-verify-maketest.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -232,7 +232,7 @@ jobs:
232232

233233
- name: VPP Make Test
234234
# yamllint disable-line rule:line-length
235-
uses: fdio/vpp/.github/actions/vpp-make-test@970ed8ecbe252fb5384e72141397e42fd9f127af
235+
uses: fdio/vpp/.github/actions/vpp-make-test@0b2ad4fb479a2e4b03adb05089895c90f4281a60
236236
timeout-minutes: 120
237237
with:
238238
LOG_DIR: ${{ env.LOG_DIR }}

0 commit comments

Comments
 (0)