mirror of
https://github.com/Mudlet/Mudlet
synced 2026-08-13 18:26:27 -04:00
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>
14 lines
313 B
Bash
Executable file
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
|