mirror of
https://github.com/Serial-Studio/Serial-Studio.git
synced 2025-01-31 17:42:55 +08:00
10 lines
213 B
Bash
Executable File
10 lines
213 B
Bash
Executable File
#!/bin/bash
|
|
if [ "${TRAVIS_OS_NAME}" = "osx" ]; then
|
|
echo Install on OSX.
|
|
./CI/travis.osx.install.sh;
|
|
fi
|
|
if [ ! -z "${CXX}" ]; then
|
|
echo "Testing (possibly updated) compiler version:"
|
|
${CXX} --version;
|
|
fi
|