Skip to content

Commit

Permalink
fix travis
Browse files Browse the repository at this point in the history
  • Loading branch information
alexchicn committed Oct 12, 2020
1 parent aafc53f commit 65291b4
Showing 1 changed file with 16 additions and 16 deletions.
32 changes: 16 additions & 16 deletions .travis.yml
Original file line number Diff line number Diff line change
Expand Up @@ -30,22 +30,22 @@ script:
- cd ./../

after_success:
- if [ $RUN_COVERALLS == true ]; then ./output/bin/linux/runtest --coveralls; fi
- if [ $RUN_COVERALLS == true ]; then ./output/bin/linux/runtest --coveralls ./resource/nothing.gltf; fi
- if [ $RUN_COVERALLS == true ]; then ./output/bin/linux/runtest --coveralls ./resource/2.0/Monster/glTF/Monster.gltf; fi
- if [ $RUN_COVERALLS == true ]; then ./output/bin/linux/runtest --coveralls ./resource/2.0/Monster/glTF-Binary/Monster.glb; fi
- if [ $RUN_COVERALLS == true ]; then ./output/bin/linux/runtest --coveralls ./resource/2.0/Monster/glTF-Draco/Monster.gltf; fi
- if [ $RUN_COVERALLS == true ]; then ./output/bin/linux/runtest --coveralls ./resource/2.0/Monster/glTF-Embedded/Monster.gltf; fi
- if [ $RUN_COVERALLS == true ]; then ./output/bin/linux/runtest --coveralls ./resource/2.0/Avocado/glTF-pbrSpecularGlossiness/Avocado.gltf; fi
- if [ $RUN_COVERALLS == true ]; then ./output/bin/linux/runtest --coveralls ./resource/2.0/Cameras/glTF/Cameras.gltf; fi
- if [ $RUN_COVERALLS == true ]; then ./output/bin/linux/runtest --coveralls ./resource/2.0/EnvironmentTest/glTF/EnvironmentTest.gltf; fi
- if [ $RUN_COVERALLS == true ]; then ./output/bin/linux/runtest --coveralls ./resource/2.0/EnvironmentTest/glTF-IBL/EnvironmentTest.gltf; fi
- if [ $RUN_COVERALLS == true ]; then ./output/bin/linux/runtest --coveralls ./resource/2.0/MorphPrimitivesTest/glTF/MorphPrimitivesTest.gltf; fi
- if [ $RUN_COVERALLS == true ]; then ./output/bin/linux/runtest --coveralls ./resource/2.0/Triangle/glTF/Triangle.gltf; fi
- if [ $RUN_COVERALLS == true ]; then ./output/bin/linux/runtest --coveralls ./resource/2.0/TriangleWithoutIndices/glTF/TriangleWithoutIndices.gltf; fi
- if [ $RUN_COVERALLS == true ]; then ./output/bin/linux/runtest --coveralls ./resource/2.0/TwoSidedPlane/glTF/TwoSidedPlane.gltf; fi
- if [ $RUN_COVERALLS == true ]; then ./output/bin/linux/runtest --coveralls ./resource/2.0/UnlitTest/glTF/UnlitTest.gltf; fi
- if [ $RUN_COVERALLS == true ]; then ./output/bin/linux/runtest --coveralls ./resource/2.0/VertexColorTest/glTF/VertexColorTest.gltf; fi
- if [ $RUN_COVERALLS == true ]; then ./output/bin/runtest --coveralls; fi
- if [ $RUN_COVERALLS == true ]; then ./output/bin/runtest --coveralls ./resource/nothing.gltf; fi
- if [ $RUN_COVERALLS == true ]; then ./output/bin/runtest --coveralls ./resource/2.0/Monster/glTF/Monster.gltf; fi
- if [ $RUN_COVERALLS == true ]; then ./output/bin/runtest --coveralls ./resource/2.0/Monster/glTF-Binary/Monster.glb; fi
- if [ $RUN_COVERALLS == true ]; then ./output/bin/runtest --coveralls ./resource/2.0/Monster/glTF-Draco/Monster.gltf; fi
- if [ $RUN_COVERALLS == true ]; then ./output/bin/runtest --coveralls ./resource/2.0/Monster/glTF-Embedded/Monster.gltf; fi
- if [ $RUN_COVERALLS == true ]; then ./output/bin/runtest --coveralls ./resource/2.0/Avocado/glTF-pbrSpecularGlossiness/Avocado.gltf; fi
- if [ $RUN_COVERALLS == true ]; then ./output/bin/runtest --coveralls ./resource/2.0/Cameras/glTF/Cameras.gltf; fi
- if [ $RUN_COVERALLS == true ]; then ./output/bin/runtest --coveralls ./resource/2.0/EnvironmentTest/glTF/EnvironmentTest.gltf; fi
- if [ $RUN_COVERALLS == true ]; then ./output/bin/runtest --coveralls ./resource/2.0/EnvironmentTest/glTF-IBL/EnvironmentTest.gltf; fi
- if [ $RUN_COVERALLS == true ]; then ./output/bin/runtest --coveralls ./resource/2.0/MorphPrimitivesTest/glTF/MorphPrimitivesTest.gltf; fi
- if [ $RUN_COVERALLS == true ]; then ./output/bin/runtest --coveralls ./resource/2.0/Triangle/glTF/Triangle.gltf; fi
- if [ $RUN_COVERALLS == true ]; then ./output/bin/runtest --coveralls ./resource/2.0/TriangleWithoutIndices/glTF/TriangleWithoutIndices.gltf; fi
- if [ $RUN_COVERALLS == true ]; then ./output/bin/runtest --coveralls ./resource/2.0/TwoSidedPlane/glTF/TwoSidedPlane.gltf; fi
- if [ $RUN_COVERALLS == true ]; then ./output/bin/runtest --coveralls ./resource/2.0/UnlitTest/glTF/UnlitTest.gltf; fi
- if [ $RUN_COVERALLS == true ]; then ./output/bin/runtest --coveralls ./resource/2.0/VertexColorTest/glTF/VertexColorTest.gltf; fi
- if [ $RUN_COVERALLS == true ]; then coveralls --exclude ./external/ --exclude ./build/CMakeFiles/ --exclude ./output/include/ --gcov-options '\-lp'; fi

before_deploy:
Expand Down

0 comments on commit 65291b4

Please sign in to comment.