From f83e8716a7dfcd58942f5aff0bc68cda8eac4574 Mon Sep 17 00:00:00 2001 From: Karol Gugala Date: Mon, 23 Nov 2020 14:14:20 +0100 Subject: [PATCH 1/2] CI: XC7: drop old distros Dropping Ubuntu Trusty and CentOS 6 from xc7 tests. Both the distros do not provide the `realpath` tool used in symbiflow wrappers Signed-off-by: Karol Gugala --- .travis.yml | 4 ---- 1 file changed, 4 deletions(-) diff --git a/.travis.yml b/.travis.yml index 53cceb5..735cfac 100644 --- a/.travis.yml +++ b/.travis.yml @@ -7,21 +7,17 @@ services: env: # Testing QuickLogic toolchain on all OSes - - TOOLCHAIN=eos-s3 OS=ubuntu OS_VERSION=trusty - TOOLCHAIN=eos-s3 OS=ubuntu OS_VERSION=xenial - TOOLCHAIN=eos-s3 OS=ubuntu OS_VERSION=bionic - TOOLCHAIN=eos-s3 OS=ubuntu OS_VERSION=eoan - TOOLCHAIN=eos-s3 OS=ubuntu OS_VERSION=focal - - TOOLCHAIN=eos-s3 OS=centos OS_VERSION=6 - TOOLCHAIN=eos-s3 OS=centos OS_VERSION=7 - TOOLCHAIN=eos-s3 OS=centos OS_VERSION=8 # Testing Xilinx 7 Series toolchain on all OSes - - TOOLCHAIN=xc7 OS=ubuntu OS_VERSION=trusty - TOOLCHAIN=xc7 OS=ubuntu OS_VERSION=xenial - TOOLCHAIN=xc7 OS=ubuntu OS_VERSION=bionic - TOOLCHAIN=xc7 OS=ubuntu OS_VERSION=eoan - TOOLCHAIN=xc7 OS=ubuntu OS_VERSION=focal - - TOOLCHAIN=xc7 OS=centos OS_VERSION=6 - TOOLCHAIN=xc7 OS=centos OS_VERSION=7 - TOOLCHAIN=xc7 OS=centos OS_VERSION=8 From ad98f38c86df7de42d057990d11e1cbbb6fe0c57 Mon Sep 17 00:00:00 2001 From: Karol Gugala Date: Mon, 23 Nov 2020 14:25:35 +0100 Subject: [PATCH 2/2] CI: XC7: temporally disable LiteX tests LiteX tests are failing due to issues in LiteX/Symbiflow support. Let's disable them until a fix is merged in LiteX. Signed-off-by: Karol Gugala --- .travis.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.travis.yml b/.travis.yml index 735cfac..1097adb 100644 --- a/.travis.yml +++ b/.travis.yml @@ -51,5 +51,5 @@ install: script: # Run the tests inside the docker container. - - if [ "$TOOLCHAIN" = "xc7" ]; then EXTRA_TESTS=,xc7-picosoc,xc7-litex,xc7-linux; fi + - if [ "$TOOLCHAIN" = "xc7" ]; then EXTRA_TESTS=,xc7-picosoc; fi - tuttest ${TOOLCHAIN}/README.rst ${TOOLCHAIN}-prepare-env,${TOOLCHAIN}-counter${EXTRA_TESTS} | ${IN_DOCKER_EXEC} "$(cat /dev/stdin)"