Files
ArduinoJson/scripts/travis/cmake.sh
T

10 lines
198 B
Bash
Raw Normal View History

2015-12-22 22:01:30 +01:00
#!/bin/sh -eux
2016-05-15 09:41:53 +02:00
URL=https://cmake.org/files/v3.4/cmake-3.4.3-Linux-x86_64.tar.gz
curl -sS $URL | tar xz -C /tmp --strip 1
2015-12-22 22:01:30 +01:00
/tmp/bin/cmake -DCMAKE_CXX_COMPILER=$CMAKE_CXX_COMPILER .
2015-12-22 22:01:30 +01:00
make
make test