dbf581abb6
This is a simple check that should be independent of OS, simply switch it from trusty to xenial. Change-Id: I403362d22735187b8c40c2cc6b17e95d81c288ce
20 lines
472 B
YAML
20 lines
472 B
YAML
- job:
|
|
name: 'xstatic-check-version'
|
|
node: ubuntu-xenial
|
|
|
|
builders:
|
|
- revoke-sudo
|
|
- gerrit-git-prep
|
|
- shell: |
|
|
virtualenv .venv
|
|
source .venv/bin/activate
|
|
pip --version
|
|
# Install setuptools_scm pre-requisite
|
|
pip install setuptools_scm
|
|
# Check version match
|
|
/usr/local/jenkins/slave_scripts/xstatic_check_version.py
|
|
deactivate
|
|
|
|
publishers:
|
|
- console-log
|