ensure-bazel: replace ignore_errors with failed_when

Also updated debug task to be more consistent with the
rest of the repo.

Change-Id: I26d97f903ea43e6cdbca5e707c85138f49a52322
This commit is contained in:
Albin Vass 2020-05-26 10:38:22 +02:00
parent 8df1e02752
commit 75ff21dac7

View File

@ -1,9 +1,12 @@
- name: Check version of bazel
shell: bazel --version | grep -Eo '([0-9]+\.)+[0-9]+'
ignore_errors: yes
shell: |
set -o pipefail
bazel --version | grep -Eo '([0-9]+\.)+[0-9]+'
failed_when: false
register: installed_bazel_version
- debug: msg="Current installed Bazel version is {{ installed_bazel_version.stdout }}"
- debug:
msg: "Current installed Bazel version is {{ installed_bazel_version.stdout }}"
- name: Download and install Bazel if needed
include_tasks: install-bazel.yaml