From 8219595c2d0cc3000621a8b7909ba6385836cd74 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?=C3=81d=C3=A1m=20Kallai?= Date: Tue, 13 Nov 2018 13:15:05 +0100 Subject: [PATCH] targets: Speculative workaround for Zephry Travis CI (#2595) The latest version of Pyocd does not install on Linux, in Zephry master branch the version was locked to 0.12.0 in requirements.txt. It's temporary workaround to fix Travis CI for Zephry v1.13.0. JerryScript-DCO-1.0-Signed-off-by: Adam Kallai kadam@inf.u-szeged.hu --- targets/zephyr/Makefile.travis | 2 ++ 1 file changed, 2 insertions(+) diff --git a/targets/zephyr/Makefile.travis b/targets/zephyr/Makefile.travis index 308511d76..e3b7c6e2d 100644 --- a/targets/zephyr/Makefile.travis +++ b/targets/zephyr/Makefile.travis @@ -36,6 +36,8 @@ install-zephyr: git clone https://github.com/zephyrproject-rtos/zephyr.git ../zephyr -b v1.13.0 pip3 install --user -U pip pip3 install --user -U setuptools + # FIXME: It's temporary workaround to make Travis CI happy for Zephry v1.13.0. + pip3 install --user pyocd==0.12.0 pip3 install --user -r ../zephyr/scripts/requirements.txt # Perform all the necessary (JerryScript-independent) installation steps.