From 4f69acf3e86c1b5eddfa1cb42b43360f721ef92c Mon Sep 17 00:00:00 2001 From: Robby Cochran Date: Mon, 16 Sep 2024 13:36:27 -0700 Subject: [PATCH] fix --- .github/workflows/collector-builder.yml | 2 -- .github/workflows/collector.yml | 2 -- ansible/ci-build-builder.yml | 2 +- ansible/ci-build-collector.yml | 2 +- 4 files changed, 2 insertions(+), 6 deletions(-) diff --git a/.github/workflows/collector-builder.yml b/.github/workflows/collector-builder.yml index fb92613e0b..37d21d29c5 100644 --- a/.github/workflows/collector-builder.yml +++ b/.github/workflows/collector-builder.yml @@ -159,7 +159,6 @@ jobs: run: | ansible-galaxy install -r ansible/requirements.yml ansible-playbook \ - -vvv \ --connection local \ -i localhost, \ --limit localhost \ @@ -174,7 +173,6 @@ jobs: timeout-minutes: 480 run: | ansible-playbook \ - -vvv \ -i ansible/ci \ -e build_hosts='job_id_${{ env.JOB_ID }}' \ -e arch='${{ matrix.arch }}' \ diff --git a/.github/workflows/collector.yml b/.github/workflows/collector.yml index fcc2b08a9f..1be7dc8d3e 100644 --- a/.github/workflows/collector.yml +++ b/.github/workflows/collector.yml @@ -85,7 +85,6 @@ jobs: timeout-minutes: 480 run: | ansible-playbook \ - -vvv \ --connection local \ -i localhost, \ --limit localhost \ @@ -168,7 +167,6 @@ jobs: timeout-minutes: 480 run: | ansible-playbook \ - -vvv \ -i ansible/ci \ -e arch='${{ matrix.arch }}' \ -e build_hosts='job_id_${{ env.JOB_ID }}' \ diff --git a/ansible/ci-build-builder.yml b/ansible/ci-build-builder.yml index 462c00279e..443feb018a 100644 --- a/ansible/ci-build-builder.yml +++ b/ansible/ci-build-builder.yml @@ -6,7 +6,7 @@ BUILD_BUILDER_IMAGE: "true" COLLECTOR_BUILDER_TAG: "{{ collector_builder_tag }}" PLATFORM: "linux/{{ arch }}" - USE_CCACHE: "{{ use_ccache }}" + USE_CCACHE: "{{ use_ccache|bool|lower }}" vars: collector_root: "{{ ansible_env.HOME }}/collector" diff --git a/ansible/ci-build-collector.yml b/ansible/ci-build-collector.yml index 1ecd76243c..5be8d5ea34 100644 --- a/ansible/ci-build-collector.yml +++ b/ansible/ci-build-collector.yml @@ -8,7 +8,7 @@ COLLECTOR_TAG: "{{ collector_tag }}" DISABLE_PROFILING: "{{ disable_profiling }}" CMAKE_BUILD_TYPE: "{{ 'Debug' if debug_mode else 'Release' }}" - USE_CCACHE: "{{ use_ccache }}" + USE_CCACHE: "{{ use_ccache|bool|lower }}" CCACHE_DIR: "{{ ansible_env.GITHUB_WORKSPACE | default(collector_root) }}/.ccache" vars: