mirror of
https://github.com/syoyo/tinygltf.git
synced 2026-06-08 03:03:50 +00:00
Deprecate Travis CI and remove Travis CI scripts. Fixes #439
This commit is contained in:
@@ -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
|
|
||||||
63
.travis.yml
63
.travis.yml
@@ -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
|
|
||||||
@@ -26,8 +26,6 @@ Currently TinyGLTF is stable and maintenance mode. No drastic changes and featur
|
|||||||
|
|
||||||
## Builds
|
## Builds
|
||||||
|
|
||||||
[](https://travis-ci.org/syoyo/tinygltf)
|
|
||||||
|
|
||||||
[](https://ci.appveyor.com/project/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
|
* [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
|
* [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.
|
* [Supernova Engine](https://github.com/supernovaengine/supernova) - Game engine for 2D and 3D projects with Lua or C++ in data oriented design.
|
||||||
* [Wicked Engine<img src="https://github.com/turanszkij/WickedEngine/blob/master/Content/logo_small.png" width="28px" align="center"/>](https://github.com/turanszkij/WickedEngine) - 3D engine with modern graphics
|
* [Wicked Engine<img src="https://github.com/turanszkij/WickedEngine/blob/master/Content/logo_small.png" width="28px" align="center"/>](https://github.com/turanszkij/WickedEngine) - 3D engine with modern graphics
|
||||||
* Your projects here! (Please send PR)
|
* Your projects here! (Please send PR)
|
||||||
|
|
||||||
## TODOs
|
## TODOs
|
||||||
|
|||||||
Reference in New Issue
Block a user