8c69a118df
This PS adds zuul gate variable args.chdir to the jobs where it has been missed. This variable helps to control relative path to the source code folder in cases when playbooks have been inherited. Change-Id: Iea56ea4d00b9449c129afb34f4f91952fcc015c4
21 lines
788 B
YAML
21 lines
788 B
YAML
# Licensed under the Apache License, Version 2.0 (the "License");
|
|
# you may not use this file except in compliance with the License.
|
|
# You may obtain a copy of the License at
|
|
#
|
|
# http://www.apache.org/licenses/LICENSE-2.0
|
|
#
|
|
# Unless required by applicable law or agreed to in writing, software
|
|
# distributed under the License is distributed on an "AS IS" BASIS,
|
|
# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
|
|
# See the License for the specific language governing permissions and
|
|
# limitations under the License.
|
|
|
|
- hosts: primary
|
|
tasks:
|
|
- name: Execute a Whitespace Linter check
|
|
command: git grep -E -l " +$"
|
|
args:
|
|
chdir: "{{ zuul.project.src_dir }}/{{ args.chdir }}"
|
|
register: result
|
|
failed_when: result.stdout != ""
|