Skip to content

Commit

Permalink
fix
Browse files Browse the repository at this point in the history
  • Loading branch information
robbycochran committed Sep 27, 2024
1 parent 7f13405 commit 4f69acf
Show file tree
Hide file tree
Showing 4 changed files with 2 additions and 6 deletions.
2 changes: 0 additions & 2 deletions .github/workflows/collector-builder.yml
Original file line number Diff line number Diff line change
Expand Up @@ -159,7 +159,6 @@ jobs:
run: |
ansible-galaxy install -r ansible/requirements.yml
ansible-playbook \
-vvv \
--connection local \
-i localhost, \
--limit localhost \
Expand All @@ -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 }}' \
Expand Down
2 changes: 0 additions & 2 deletions .github/workflows/collector.yml
Original file line number Diff line number Diff line change
Expand Up @@ -85,7 +85,6 @@ jobs:
timeout-minutes: 480
run: |
ansible-playbook \
-vvv \
--connection local \
-i localhost, \
--limit localhost \
Expand Down Expand Up @@ -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 }}' \
Expand Down
2 changes: 1 addition & 1 deletion ansible/ci-build-builder.yml
Original file line number Diff line number Diff line change
Expand Up @@ -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"
Expand Down
2 changes: 1 addition & 1 deletion ansible/ci-build-collector.yml
Original file line number Diff line number Diff line change
Expand Up @@ -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:
Expand Down

0 comments on commit 4f69acf

Please sign in to comment.