v/.travis.yml

89 lines
2.3 KiB
YAML
Raw Normal View History

2019-06-26 01:26:26 +02:00
language: c
matrix:
include:
- os: linux
name: "linux"
2019-06-29 02:06:59 +02:00
dist: xenial
2019-06-26 01:26:26 +02:00
sudo: required
addons:
apt:
sources:
2019-06-29 18:05:57 +02:00
- ubuntu-toolchain-r-test
2019-06-26 01:26:26 +02:00
packages:
2019-06-29 18:05:57 +02:00
- gcc-5
- g++-5
- make
- libglfw3
2019-06-29 18:05:57 +02:00
- libglfw3-dev
- libfreetype6-dev
- libssl-dev
2019-07-12 16:10:32 +02:00
- os: windows
name: "windows_gcc"
language: bash
filter_secrets: false
- os: windows
name: "windows_msvc"
language: bash
2019-07-12 16:10:32 +02:00
filter_secrets: false
2019-06-26 01:26:26 +02:00
- os: osx
name: "osx"
2019-09-14 12:10:05 +02:00
osx_image: xcode10.3
2019-06-26 21:14:31 +02:00
addons:
homebrew:
packages:
2019-06-29 18:05:57 +02:00
- freetype
- glfw
2019-08-06 13:37:25 +02:00
- openssl
2019-06-25 06:55:44 +02:00
script:
2019-06-26 01:26:26 +02:00
- |
if [[ "${TRAVIS_OS_NAME}" == "linux" ]]; then
sudo unlink /usr/bin/gcc && sudo ln -s /usr/bin/gcc-5 /usr/bin/gcc
fi
2019-08-06 13:49:13 +02:00
- |
if [[ "${TRAVIS_OS_NAME}" == "osx" ]]; then
export LIBRARY_PATH=$LIBRARY_PATH:/usr/local/opt/openssl/lib/
fi
2019-07-12 21:10:22 +02:00
- |
if [[ "${TRAVIS_OS_NAME}" == "windows" ]]; then
### troubleshooting and diagnostics: show ALL environment variables in the instance
#set
2019-09-03 14:54:45 +02:00
set -e
git clone --depth=1 https://github.com/ubawurinna/freetype-windows-binaries thirdparty/freetype/
if [[ "${TRAVIS_JOB_NAME}" == "windows_gcc" ]]; then
echo "Building V with GCC"
export VFLAGS="-os windows"
./make.bat -gcc
fi
if [[ "${TRAVIS_JOB_NAME}" == "windows_msvc" ]]; then
2019-09-15 19:00:12 +02:00
exit
echo "Building V with MSVC"
export VFLAGS="-os msvc"
./make.bat -msvc
fi
2019-09-14 17:39:04 +02:00
./v.exe -o v2.exe compiler
./v2.exe -o v3.exe compiler
./v3.exe -o v4.exe compiler
ls -la v.exe
2019-09-14 17:37:48 +02:00
ls -la v2.exe
ls -la v3.exe
ls -la v4.exe
### running just repl_test.v produces failing results earlier and is easier to read
echo "Running only the repl tests directly..."
./v.exe ./compiler/tests/repl/repl_test.v
echo "Running ALL tests..."
./v.exe test v
2019-09-03 14:54:45 +02:00
set +e
2019-07-12 21:10:22 +02:00
fi
2019-07-12 20:58:43 +02:00
- |
if [[ "${TRAVIS_OS_NAME}" != "windows" ]]; then
2019-07-12 21:10:22 +02:00
make
./v test v
2019-07-12 20:58:43 +02:00
fi
2019-08-08 15:17:10 +02:00
- |
if [[ "${TRAVIS_OS_NAME}" == "osx" ]]; then
git clone https://github.com/vlang/vid
cd vid && ../v -debug -o vid .
fi