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