Merge "Add a yarn role"

This commit is contained in:
Zuul 2018-08-09 20:34:28 +00:00 committed by Gerrit Code Review
commit a77b19835b
4 changed files with 49 additions and 0 deletions

15
roles/yarn/README.rst Normal file
View File

@ -0,0 +1,15 @@
Run yarn command in a source directory. Assumes the appropriate version
of yarn has been installed.
**Role Variables**
.. zuul:rolevar:: yarn_command
Command to run. If it's a standard lifecycle command, it will be run as
``yarn {{ yarn_command }}``. Otherwise it will be run as
``yarn run {{ yarn_command }}``.
.. zuul:rolevar:: zuul_work_dir
:default: {{ zuul.project.src_dir }}
Directory to run yarn in.

View File

@ -0,0 +1 @@
zuul_work_dir: "{{ zuul.project.src_dir }}"

View File

@ -0,0 +1,24 @@
- name: Require yarn_command variable
fail:
msg: yarn_command is required for this role
when: yarn_command is not defined
- name: Run yarn lifecycle command
when: yarn_command in yarn_lifecycle_phases
command: "yarn {{ yarn_command }} --verbose"
# Need to set DISPLAY to the value that will be set when the virtual
# framebuffer is set up for doing browser tests.
environment:
DISPLAY: ':99'
args:
chdir: "{{ zuul_work_dir }}"
- name: Run yarn custom command
when: yarn_command not in yarn_lifecycle_phases
command: "yarn run {{ yarn_command }} --verbose"
# Need to set DISPLAY to the value that will be set when the virtual
# framebuffer is set up for doing browser tests.
environment:
DISPLAY: ':99'
args:
chdir: "{{ zuul_work_dir }}"

View File

@ -0,0 +1,9 @@
yarn_lifecycle_phases:
- install
- pack
- publish
- restart
- start
- stop
- test
- version