Merge "install-javascript-packages: add tox_constraints_file"

This commit is contained in:
Zuul 2020-02-26 05:40:28 +00:00 committed by Gerrit Code Review
commit 3cbce518ad
3 changed files with 31 additions and 2 deletions

View File

@ -6,3 +6,9 @@ Install javascript dependencies needed for a project
:default: {{ zuul.project.src_dir }} :default: {{ zuul.project.src_dir }}
The directory to work in. The directory to work in.
.. zuul:rolevar:: tox_constraints_file
Path to a pip constraints file. Will set the
``UPPER_CONSTRAINTS_FILE`` environment variable. Useful if npm
``postinstall`` runs tox.

View File

@ -1 +1,3 @@
npm_environment:
DISPLAY: ':99'
zuul_work_dir: "{{ zuul.project.src_dir }}" zuul_work_dir: "{{ zuul.project.src_dir }}"

View File

@ -1,3 +1,25 @@
- name: Check to see if the constraints file exists
stat:
path: "{{ tox_constraints_file }}"
get_checksum: false
get_mime: false
get_md5: false
register: stat_results
when: tox_constraints_file is defined
- name: Fail if constraints file is missing
when: tox_constraints_file is defined and not stat_results.stat.exists
fail:
msg: tox_constraints_file is defined but was not found
- name: Record file location
set_fact:
tox_constraints_env:
TOX_CONSTRAINTS_FILE: "{{ tox_constraints_file }}"
# Backward compatibility, to be removed
UPPER_CONSTRAINTS_FILE: "{{ tox_constraints_file }}"
when: tox_constraints_file is defined
- name: Check for yarn.lock file - name: Check for yarn.lock file
stat: stat:
path: "{{ zuul_work_dir }}/yarn.lock" path: "{{ zuul_work_dir }}/yarn.lock"
@ -16,8 +38,7 @@
- name: Install npm dependencies - name: Install npm dependencies
command: npm install --verbose command: npm install --verbose
environment: environment: "{{ npm_environment|combine(tox_constraints_env|default({})) }}"
DISPLAY: ':99'
args: args:
chdir: "{{ zuul_work_dir }}" chdir: "{{ zuul_work_dir }}"
when: not yarn_lock.stat.exists when: not yarn_lock.stat.exists