Skip to content

Commit 17ba285

Browse files
committed
fix
1 parent cf45a8d commit 17ba285

File tree

4 files changed

+2
-6
lines changed

4 files changed

+2
-6
lines changed

.github/workflows/collector-builder.yml

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -159,7 +159,6 @@ jobs:
159159
run: |
160160
ansible-galaxy install -r ansible/requirements.yml
161161
ansible-playbook \
162-
-vvv \
163162
--connection local \
164163
-i localhost, \
165164
--limit localhost \
@@ -174,7 +173,6 @@ jobs:
174173
timeout-minutes: 480
175174
run: |
176175
ansible-playbook \
177-
-vvv \
178176
-i ansible/ci \
179177
-e build_hosts='job_id_${{ env.JOB_ID }}' \
180178
-e arch='${{ matrix.arch }}' \

.github/workflows/collector.yml

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -85,7 +85,6 @@ jobs:
8585
timeout-minutes: 480
8686
run: |
8787
ansible-playbook \
88-
-vvv \
8988
--connection local \
9089
-i localhost, \
9190
--limit localhost \
@@ -168,7 +167,6 @@ jobs:
168167
timeout-minutes: 480
169168
run: |
170169
ansible-playbook \
171-
-vvv \
172170
-i ansible/ci \
173171
-e arch='${{ matrix.arch }}' \
174172
-e build_hosts='job_id_${{ env.JOB_ID }}' \

ansible/ci-build-builder.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@
66
BUILD_BUILDER_IMAGE: "true"
77
COLLECTOR_BUILDER_TAG: "{{ collector_builder_tag }}"
88
PLATFORM: "linux/{{ arch }}"
9-
USE_CCACHE: "{{ use_ccache }}"
9+
USE_CCACHE: "{{ use_ccache|bool|lower }}"
1010

1111
vars:
1212
collector_root: "{{ ansible_env.HOME }}/collector"

ansible/ci-build-collector.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@
88
COLLECTOR_TAG: "{{ collector_tag }}"
99
DISABLE_PROFILING: "{{ disable_profiling }}"
1010
CMAKE_BUILD_TYPE: "{{ 'Debug' if debug_mode else 'Release' }}"
11-
USE_CCACHE: "{{ use_ccache }}"
11+
USE_CCACHE: "{{ use_ccache|bool|lower }}"
1212
CCACHE_DIR: "{{ ansible_env.GITHUB_WORKSPACE | default(collector_root) }}/.ccache"
1313

1414
vars:

0 commit comments

Comments
 (0)