diff --git a/.travis-before-install.sh b/.travis-before-install.sh
deleted file mode 100755
index ea6615a..0000000
--- a/.travis-before-install.sh
+++ /dev/null
@@ -1,10 +0,0 @@
-#!/bin/bash
-
-if [[ "$TRAVIS_OS_NAME" == "osx" ]]
-then
- brew upgrade
- curl -o premake5.tar.gz https://github.com/premake/premake-core/releases/download/v5.0.0-alpha12/premake-5.0.0-alpha12-macosx.tar.gz
-else
- wget https://github.com/premake/premake-core/releases/download/v5.0.0-alpha12/premake-5.0.0-alpha12-linux.tar.gz -O premake5.tar.gz
-fi
-tar xzf premake5.tar.gz
diff --git a/.travis.yml b/.travis.yml
deleted file mode 100644
index 70f7679..0000000
--- a/.travis.yml
+++ /dev/null
@@ -1,63 +0,0 @@
-language: cpp
-sudo: false
-matrix:
- include:
- - addons: &1
- apt:
- sources:
- - george-edison55-precise-backports
- - ubuntu-toolchain-r-test
- - llvm-toolchain-trusty-3.9
- packages:
- - g++-4.9
- - clang-3.9
- compiler: clang
- env: COMPILER_VERSION=3.9 BUILD_TYPE=Debug
- - addons: *1
- compiler: clang
- env: COMPILER_VERSION=3.9 BUILD_TYPE=Release
- - addons: &2
- apt:
- sources:
- - george-edison55-precise-backports
- - ubuntu-toolchain-r-test
- packages:
- - g++-4.9
- compiler: gcc
- env: COMPILER_VERSION=4.9 BUILD_TYPE=Debug EXTRA_CXXFLAGS="-fsanitize=address"
- - addons: *2
- compiler: gcc
- env: COMPILER_VERSION=4.9 BUILD_TYPE=Release EXTRA_CXXFLAGS="-fsanitize=address"
- - addons: *1
- compiler: clang
- env: COMPILER_VERSION=3.9 BUILD_TYPE=Debug CFLAGS="-O0" CXXFLAGS="-O0"
- - addons: &3
- apt:
- sources:
- - ubuntu-toolchain-r-test
- packages:
- - g++-4.8
- compiler: gcc
- env: COMPILER_VERSION=4.8 BUILD_TYPE=Debug
- - addons: *3
- compiler: gcc
- env: COMPILER_VERSION=4.8 BUILD_TYPE=Release
-
-before_install:
- - ./.travis-before-install.sh
-
-
-script:
- - export CC="${CC}-${COMPILER_VERSION}"
- - export CXX="${CXX}-${COMPILER_VERSION}"
- - ${CC} -v
- - ${CXX} ${EXTRA_CXXFLAGS} -std=c++11 -Wall -g -o loader_example loader_example.cc
- - ./loader_example ./models/Cube/Cube.gltf
- - cd tests
- - clang++ -v
- - make
- - ./tester
- - ./tester_noexcept
- - cd ../examples/raytrace
- - ../../premake5 gmake
- - make
diff --git a/README.md b/README.md
index e5234df..5fbefd3 100644
--- a/README.md
+++ b/README.md
@@ -26,8 +26,6 @@ Currently TinyGLTF is stable and maintenance mode. No drastic changes and featur
## Builds
-[](https://travis-ci.org/syoyo/tinygltf)
-
[](https://ci.appveyor.com/project/syoyo/tinygltf)

@@ -109,7 +107,7 @@ WASI build example is located in [wasm](wasm) .
* [SanityEngine](https://github.com/DethRaid/SanityEngine) - A C++/D3D12 renderer focused on the personal and professional development of its developer
* [Open3D](http://www.open3d.org/) - A Modern Library for 3D Data Processing
* [Supernova Engine](https://github.com/supernovaengine/supernova) - Game engine for 2D and 3D projects with Lua or C++ in data oriented design.
-* [Wicked Engine
](https://github.com/turanszkij/WickedEngine) - 3D engine with modern graphics
+* [Wicked Engine
](https://github.com/turanszkij/WickedEngine) - 3D engine with modern graphics
* Your projects here! (Please send PR)
## TODOs