10ed30ebd8
As nodejs v20 job is passing in horizon and all horizon plugins [1]. So we didn't require the nodejs v18 job. This patch removes the nodejs v18 job definition from ``.zuul.d/nodejs-jobs.yaml`` and other nodejs v18 job references. [1] https://review.opendev.org/c/openstack/horizon/+/904934 Change-Id: I3a27799b4864c572a2ef7bf7477ea2b21eb8f395
46 lines
1.6 KiB
YAML
46 lines
1.6 KiB
YAML
- job:
|
|
name: horizon-nodejs20-run-lint
|
|
parent: nodejs-run-lint
|
|
description: |
|
|
Run lint using Node 20 for horizon plugins.
|
|
vars:
|
|
node_version: 20
|
|
tox_constraints_file: "{{ ansible_user_dir }}/{{ zuul.projects['opendev.org/openstack/requirements'].src_dir }}/upper-constraints.txt"
|
|
nodeset: debian-bullseye
|
|
pre-run: playbooks/horizon-nodejs/pre.yaml
|
|
required-projects:
|
|
- openstack/horizon
|
|
- openstack/requirements
|
|
|
|
- job:
|
|
name: horizon-nodejs20-run-test
|
|
parent: nodejs-run-test-browser
|
|
description: |
|
|
Run test using Node 20 for horizon plugins.
|
|
vars:
|
|
node_version: 20
|
|
tox_constraints_file: "{{ ansible_user_dir }}/{{ zuul.projects['opendev.org/openstack/requirements'].src_dir }}/upper-constraints.txt"
|
|
pre-run: playbooks/horizon-nodejs/pre.yaml
|
|
nodeset: debian-bullseye
|
|
required-projects:
|
|
- openstack/horizon
|
|
- openstack/requirements
|
|
|
|
- project-template:
|
|
name: horizon-nodejs-jobs
|
|
description: |
|
|
This project template is defined to run lint and test jobs using
|
|
Node LTS version (i.e. 20 now) for horizon plugins. horizon plugins
|
|
can use this template to run nodejs jobs. So if we want to update
|
|
nodejs version in horizon plugins we can update this template to use
|
|
the job with the latest node version and not many changes are required
|
|
in the horizon plugins side.
|
|
check:
|
|
jobs:
|
|
- horizon-nodejs20-run-lint
|
|
- horizon-nodejs20-run-test
|
|
gate:
|
|
jobs:
|
|
- horizon-nodejs20-run-lint
|
|
- horizon-nodejs20-run-test
|