17 lines
567 B
YAML
17 lines
567 B
YAML
# Copyright Broadcom, Inc. All Rights Reserved.
|
|
# SPDX-License-Identifier: APACHE-2.0
|
|
|
|
command:
|
|
check-basic-command:
|
|
exec: python -c "import datetime; print(datetime.datetime.now().year)" | grep $(date +"%Y")
|
|
exit-status: 0
|
|
check-pip:
|
|
exec: pip install docutils
|
|
exit-status: 0
|
|
check-venv:
|
|
exec: virtualenv /tmp/vib-venv
|
|
exit-status: 0
|
|
# Shared module is expected as per compilation flags
|
|
check-shared-module:
|
|
exec: find /opt/bitnami/python/lib/libpython{{ regexFind "\\d+\\.\\d+" .Env.APP_VERSION }}*so -type l
|
|
exit-status: 0 |