Skip to content
Snippets Groups Projects
Commit eec919bf authored by Lorenzo Pagliai's avatar Lorenzo Pagliai
Browse files

[CACHE] Avoid sstate-cache usage for Intel

* An error in compiling .wic image is given when building Intel Apollo Lake
image
parent bb022e9c
No related branches found
No related tags found
No related merge requests found
......@@ -11,16 +11,16 @@ if [ -z "$CUSTOM" ]; then
then echo 'SSTATE_DIR = "/var/cache/edgehog_sstate-imx8"' >> conf/local.conf;
elif [[ $PROCESSOR == *rk* && "$CI_JOB_NAME" != *"embedded"* ]];
then echo 'SSTATE_DIR = "/var/cache/edgehog_sstate-rk"' >> conf/local.conf;
elif [[ $PROCESSOR == *intel* && "$CI_JOB_NAME" != *"embedded"* ]];
then echo 'SSTATE_DIR = "/var/cache/edgehog_sstate-intel"' >> conf/local.conf;
# elif [[ $PROCESSOR == *intel* && "$CI_JOB_NAME" != *"embedded"* ]];
# then echo 'SSTATE_DIR = "/var/cache/edgehog_sstate-intel"' >> conf/local.conf;
elif [[ $PROCESSOR == *imx6* && "$CI_JOB_NAME" == *"embedded"* ]];
then echo 'SSTATE_DIR = "/var/cache/edgehog_sstate-imx6-embedded"' >> conf/local.conf;
elif [[ $PROCESSOR == *imx8* && "$CI_JOB_NAME" == *"embedded"* ]];
then echo 'SSTATE_DIR = "/var/cache/edgehog_sstate-imx8-embedded"' >> conf/local.conf;
elif [[ $PROCESSOR == *rk* && "$CI_JOB_NAME" == *"embedded"* ]];
then echo 'SSTATE_DIR = "/var/cache/edgehog_sstate-rk-embedded"' >> conf/local.conf;
elif [[ $PROCESSOR == *intel* && "$CI_JOB_NAME" == *"embedded"* ]];
then echo 'SSTATE_DIR = "/var/cache/edgehog_sstate-intel-embedded"' >> conf/local.conf;
# elif [[ $PROCESSOR == *intel* && "$CI_JOB_NAME" == *"embedded"* ]];
# then echo 'SSTATE_DIR = "/var/cache/edgehog_sstate-intel-embedded"' >> conf/local.conf;
fi
fi
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment