File tree Expand file tree Collapse file tree 4 files changed +2
-6
lines changed Expand file tree Collapse file tree 4 files changed +2
-6
lines changed Original file line number Diff line number Diff line change @@ -159,7 +159,6 @@ jobs:
159
159
run : |
160
160
ansible-galaxy install -r ansible/requirements.yml
161
161
ansible-playbook \
162
- -vvv \
163
162
--connection local \
164
163
-i localhost, \
165
164
--limit localhost \
@@ -174,7 +173,6 @@ jobs:
174
173
timeout-minutes : 480
175
174
run : |
176
175
ansible-playbook \
177
- -vvv \
178
176
-i ansible/ci \
179
177
-e build_hosts='job_id_${{ env.JOB_ID }}' \
180
178
-e arch='${{ matrix.arch }}' \
Original file line number Diff line number Diff line change 85
85
timeout-minutes : 480
86
86
run : |
87
87
ansible-playbook \
88
- -vvv \
89
88
--connection local \
90
89
-i localhost, \
91
90
--limit localhost \
@@ -168,7 +167,6 @@ jobs:
168
167
timeout-minutes : 480
169
168
run : |
170
169
ansible-playbook \
171
- -vvv \
172
170
-i ansible/ci \
173
171
-e arch='${{ matrix.arch }}' \
174
172
-e build_hosts='job_id_${{ env.JOB_ID }}' \
Original file line number Diff line number Diff line change 6
6
BUILD_BUILDER_IMAGE : " true"
7
7
COLLECTOR_BUILDER_TAG : " {{ collector_builder_tag }}"
8
8
PLATFORM : " linux/{{ arch }}"
9
- USE_CCACHE : " {{ use_ccache }}"
9
+ USE_CCACHE : " {{ use_ccache|bool|lower }}"
10
10
11
11
vars :
12
12
collector_root : " {{ ansible_env.HOME }}/collector"
Original file line number Diff line number Diff line change 8
8
COLLECTOR_TAG : " {{ collector_tag }}"
9
9
DISABLE_PROFILING : " {{ disable_profiling }}"
10
10
CMAKE_BUILD_TYPE : " {{ 'Debug' if debug_mode else 'Release' }}"
11
- USE_CCACHE : " {{ use_ccache }}"
11
+ USE_CCACHE : " {{ use_ccache|bool|lower }}"
12
12
CCACHE_DIR : " {{ ansible_env.GITHUB_WORKSPACE | default(collector_root) }}/.ccache"
13
13
14
14
vars :
You can’t perform that action at this time.
0 commit comments