Skip to content
Snippets Groups Projects

Compare revisions

Changes are shown as if the source revision was being merged into the target revision. Learn more about comparing revisions.

Source

Select target project
No results found

Target

Select target project
  • seco-ne/yocto/infrastructure/gitlab-ci
1 result
Show changes
Commits on Source (3)
......@@ -84,6 +84,8 @@ build-{{ machine }}:
- export SUPPORTED_HARDWARE=" SANTARO, SANTOKA, SANTINO, SANTINO LT, SANTVEND, "
{%- elif machine == "seco-mx8mm" %}
- export SUPPORTED_HARDWARE=" TANARO, "
{%- elif machine == "seco-genio700" %}
- export SUPPORTED_HARDWARE=" WILK, "
{%- endif %}
- !reference [.save_build_env]
......@@ -109,6 +111,9 @@ build-{{ machine }}:
{% elif machine == 'seco-mx8mm' or machine == 'imx8mguf' %}
{% set platforms = "tanaro" %}
{% set lava_machine = "imx8mguf" %}
{% elif machine == 'seco-genio700' %}
{% set platforms = "wilk" %}
{% set lava_machine = "genio700" %}
{% else %}
{% set platforms = '' %}
{% set lava_machine = '' %}
......
......@@ -69,11 +69,9 @@ workflow:
if [[ ! -z "${INSTALL_SCRIPT}" ]]; then
SCRIPT="${CI_PROJECT_DIR}/${IMAGE_PATH}/${INSTALL_SCRIPT}"
if [ ! -f "${SCRIPT}" ]; then
echo "Install script missing, searched for '$SCRIPT'"
exit 1
fi
if [ "$CI_PROJECT_VISIBILITY" = "public" ];then
echo "Warning: Install script missing, searched for '$SCRIPT'"
else
if [ "$CI_PROJECT_VISIBILITY" = "public" ];then
cat <<-EOF
==============================
Install the image:
......@@ -93,6 +91,7 @@ workflow:
| sh -s -- --url="\$(dirname "\$FNG")"
==============================
EOF
fi
fi
fi
......