Skip to content

Commit 8721b79

Browse files
committed
Remove unused variables
Signed-off-by: Carlos Ferreira González <carlosferreira@eprosima.com>
1 parent 1710bc3 commit 8721b79

2 files changed

Lines changed: 1 addition & 22 deletions

File tree

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

Lines changed: 1 addition & 11 deletions
Original file line numberDiff line numberDiff line change
@@ -11,10 +11,6 @@ on:
1111
description: 'Run Addess Sanitizer job for Fast DDS'
1212
required: false
1313
type: boolean
14-
run_asan_discovery_server:
15-
description: 'Run Addess Sanitizer job for Discovery Server'
16-
required: false
17-
type: boolean
1814
run_tsan_fastdds:
1915
description: 'Run Thread Sanitizer job for Fast DDS'
2016
required: false
@@ -44,20 +40,14 @@ on:
4440
required: false
4541
type: string
4642
default: 'master'
47-
discovery_server_ref:
48-
description: >
49-
Branch or tag of Discovery Server repository (https://github.com/eProsima/Discovery-Server)
50-
Required only if the Discovery Server job is requested
51-
required: false
52-
type: string
5343

5444
defaults:
5545
run:
5646
shell: bash
5747

5848
jobs:
5949
asan_fastdds_build:
60-
if: ${{ inputs.run_asan_fastdds == true || inputs.run_asan_discovery_server == true }}
50+
if: ${{ inputs.run_asan_fastdds == true }}
6151
runs-on: ubuntu-24.04
6252
steps:
6353
- name: Free disk space

.github/workflows/sanitizers-ci.yml

Lines changed: 0 additions & 11 deletions
Original file line numberDiff line numberDiff line change
@@ -11,10 +11,6 @@ on:
1111
description: 'Run Addess Sanitizer job for Fast DDS'
1212
required: false
1313
type: boolean
14-
run_asan_discovery_server:
15-
description: 'Run Addess Sanitizer job for Discovery Server'
16-
required: false
17-
type: boolean
1814
run_tsan_fastdds:
1915
description: 'Run Thread Sanitizer job for Fast DDS'
2016
required: false
@@ -38,11 +34,6 @@ on:
3834
fastdds_ref:
3935
description: 'Branch or tag of Fast DDS repository (https://github.com/eProsima/Fast-DDS)'
4036
required: true
41-
discovery_server_ref:
42-
description: >
43-
Branch or tag of Discovery Server repository (https://github.com/eProsima/Discovery-Server)
44-
Required only if the Discovery Server job is requested
45-
required: false
4637

4738
pull_request:
4839
types:
@@ -67,11 +58,9 @@ jobs:
6758
with:
6859
label: ${{ inputs.label || 'fastdds-sanitizers-ci' }}
6960
run_asan_fastdds: ${{ ((inputs.run_asan_fastdds == true) && true) || github.event_name == 'pull_request' }}
70-
run_asan_discovery_server: ${{ ((inputs.run_asan_discovery_server == true) && true) || github.event_name == 'pull_request' }}
7161
run_tsan_fastdds: ${{ ((inputs.run_tsan_fastdds == true) && true) || github.event_name == 'pull_request' }}
7262
colcon_build_args: ${{ inputs.colcon_build_args || '' }}
7363
colcon_test_args: ${{ inputs.colcon_test_args || '' }}
7464
cmake_args: ${{ inputs.cmake_args || '' }}
7565
ctest_args: ${{ inputs.ctest_args || '' }}
7666
fastdds_ref: ${{ inputs.fastdds_ref || github.ref || 'master' }}
77-
discovery_server_ref: ${{ inputs.discovery_server_ref || 'master' }}

0 commit comments

Comments
 (0)