Skip to content

Commit 8ccb01c

Browse files
committed
Refs #21228: Avoid running tests in 1.0.x
Signed-off-by: JesusPoderoso <jesuspoderoso@eprosima.com>
1 parent c2a7ad2 commit 8ccb01c

4 files changed

Lines changed: 4 additions & 4 deletions

File tree

.github/workflows/reusable-ubuntu-ci.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -41,7 +41,7 @@ on:
4141
description: 'Run test suite of Fast DDS python'
4242
required: false
4343
type: boolean
44-
default: true
44+
default: false
4545

4646
defaults:
4747
run:

.github/workflows/reusable-windows-ci.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -46,7 +46,7 @@ on:
4646
description: 'Run test suite of Fast DDS python'
4747
required: false
4848
type: boolean
49-
default: true
49+
default: false
5050
env:
5151
colcon-build-default-cmake-args: '-DTHIRDPARTY_Asio=FORCE -DTHIRDPARTY_TinyXML2=FORCE -DTHIRDPARTY_fastcdr=OFF -DTHIRDPARTY_UPDATE=ON -DEPROSIMA_EXTRA_CMAKE_CXX_FLAGS="/MP /WX"'
5252
defaults:

.github/workflows/ubuntu-ci.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -64,4 +64,4 @@ jobs:
6464
fastdds-python-branch: ${{ inputs.fastdds-python-branch || github.ref || '1.0.x' }}
6565
fastdds-branch: ${{ inputs.fastdds-branch || '2.6.x' }}
6666
run-build: ${{ !(github.event_name == 'pull_request') && true || (!contains(github.event.pull_request.labels.*.name, 'skip-ci') && !contains(github.event.pull_request.labels.*.name, 'conflicts')) && true || false }}
67-
run-tests: ${{ ((inputs.run-tests == true) && true) || (github.event_name == 'pull_request' && !contains(github.event.pull_request.labels.*.name, 'no-test')) && true || false }}
67+
run-tests: ${{ ((inputs.run-tests == true) && true) || false }}

.github/workflows/windows-ci.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -83,4 +83,4 @@ jobs:
8383
fastdds-python-branch: ${{ inputs.fastdds-python-branch || github.ref || matrix.fastdds-python-branch }}
8484
fastdds-branch: ${{ inputs.fastdds-branch || matrix.fastdds-branch }}
8585
run-build: ${{ !(github.event_name == 'pull_request') && true || (!contains(github.event.pull_request.labels.*.name, 'skip-ci') && !contains(github.event.pull_request.labels.*.name, 'conflicts')) && true || false }}
86-
run-tests: ${{ ((inputs.run-tests == true) && true) || (github.event_name == 'pull_request' && !contains(github.event.pull_request.labels.*.name, 'no-test')) && true || false }}
86+
run-tests: ${{ ((inputs.run-tests == true) && true) || false }}

0 commit comments

Comments
 (0)