mudlet/CI/install.sh
Vadim Peretokin 09aac5ce96
Infrastructure: remove travis. prefix from CI files (#8375)
We no longer use that platform for a long while now

<!-- Keep the title short & concise so anyone non-technical can
understand it,
     the title appears in PTB changelogs -->
#### Brief overview of PR changes/additions
Remove `travis.` prefix from CI files
#### Motivation for adding to Mudlet
We no longer use Travis for years now
#### Other info (issues closed, discussion etc)
Also deleted an unused `Doxyfile`.

Co-authored-by: Vadim Peretokin <vadi2@users.noreply.github.com>
2026-01-09 10:21:04 +01:00

14 lines
313 B
Bash
Executable file

#!/bin/bash
if [ "${TRAVIS_OS_NAME}" = "osx" ]; then
echo Install on OSX.
source CI/osx.install.sh;
fi
if [ "${TRAVIS_OS_NAME}" = "linux" ]; then
echo Install on linux.
source CI/linux.install.sh;
fi
if [ ! -z "${CXX}" ]; then
echo "Testing (possibly updated) compiler version:"
${CXX} --version;
fi