Skip to content

Commit

Permalink
fmt
Browse files Browse the repository at this point in the history
  • Loading branch information
robbycochran committed Sep 27, 2024
1 parent abdf93a commit 7f13405
Show file tree
Hide file tree
Showing 2 changed files with 6 additions and 6 deletions.
4 changes: 2 additions & 2 deletions .github/workflows/collector-builder.yml
Original file line number Diff line number Diff line change
Expand Up @@ -159,7 +159,7 @@ jobs:
run: |
ansible-galaxy install -r ansible/requirements.yml
ansible-playbook \
-vvv \ # DEBUG
-vvv \
--connection local \
-i localhost, \
--limit localhost \
Expand All @@ -174,7 +174,7 @@ jobs:
timeout-minutes: 480
run: |
ansible-playbook \
-vvv \ # DEBUG
-vvv \
-i ansible/ci \
-e build_hosts='job_id_${{ env.JOB_ID }}' \
-e arch='${{ matrix.arch }}' \
Expand Down
8 changes: 4 additions & 4 deletions .github/workflows/collector.yml
Original file line number Diff line number Diff line change
Expand Up @@ -74,7 +74,7 @@ jobs:
collector_tag: ${{ inputs.collector-tag }}
debug_mode: ${{ github.event_name == 'pull_request' }}
driver_version: ${DRIVER_VERSION}
use_ccache: ${( env.USE_CCACHE }}
use_ccache: ${{ env.USE_CCACHE }}
EOF
- name: Build images
Expand All @@ -85,7 +85,7 @@ jobs:
timeout-minutes: 480
run: |
ansible-playbook \
-vvv \ # DEBUG
-vvv \
--connection local \
-i localhost, \
--limit localhost \
Expand Down Expand Up @@ -161,14 +161,14 @@ jobs:
collector_image: ${{ inputs.collector-image }}
collector_tag: ${{ inputs.collector-tag }}
debug_mode: ${{ github.event_name == 'pull_request' }}
use_ccache: ${( env.USE_CCACHE }}
use_ccache: ${{ env.USE_CCACHE }}
EOF
- name: Build ${{ matrix.arch }} image
timeout-minutes: 480
run: |
ansible-playbook \
-vvv \ # DEBUG
-vvv \
-i ansible/ci \
-e arch='${{ matrix.arch }}' \
-e build_hosts='job_id_${{ env.JOB_ID }}' \
Expand Down

0 comments on commit 7f13405

Please sign in to comment.