A few Travis CI fixes
authorAnton Blanchard <anton@linux.ibm.com>
Thu, 29 Aug 2019 22:12:54 +0000 (08:12 +1000)
committerAnton Blanchard <anton@ozlabs.org>
Thu, 29 Aug 2019 22:12:54 +0000 (08:12 +1000)
- Switch to using ghdl/vunit:llvm, it's a smaller container
- We need to "apt update" before installing packages

Signed-off-by: Anton Blanchard <anton@linux.ibm.com>
.travis.yml

index 8a59d1b3f2396092a909cc499cdbe041bb3a19d0..460fd439a5607e46eabaa1701b02c59f06c89108 100644 (file)
@@ -3,6 +3,6 @@ install: skip
 
 services: docker
 
-before_install: docker pull ghdl/vunit:gcc
+before_install: docker pull ghdl/vunit:llvm
 
-script: docker run --rm -t -v `pwd`:/build -w /build ghdl/vunit:gcc bash -c "apt install -y python3-pexpect && make GNATMAKE='gnatmake -j'$(nproc) && make -j$(nproc) check_light"
+script: docker run --rm -t -v `pwd`:/build -w /build ghdl/vunit:llvm bash -c "apt update && apt install -y python3-pexpect && make GNATMAKE='gnatmake -j'$(nproc) && make -j$(nproc) check_light"