[DEV] update test
This commit is contained in:
parent
123e47628e
commit
170589f606
26
.travis.yml
26
.travis.yml
@ -4,10 +4,6 @@ language:
|
|||||||
|
|
||||||
sudo: false
|
sudo: false
|
||||||
|
|
||||||
compiler:
|
|
||||||
- clang
|
|
||||||
- gcc
|
|
||||||
|
|
||||||
os:
|
os:
|
||||||
- linux
|
- linux
|
||||||
- osx
|
- osx
|
||||||
@ -27,8 +23,18 @@ addons:
|
|||||||
install:
|
install:
|
||||||
- pip install --user lutin
|
- pip install --user lutin
|
||||||
|
|
||||||
|
env:
|
||||||
|
- CONF=debug BOARD=Linux BUILDER=clang GCOV=
|
||||||
|
- CONF=release BOARD=Linux BUILDER=clang GCOV=
|
||||||
|
- CONF=debug BOARD=Linux BUILDER=gcc GCOV=
|
||||||
|
- CONF=release BOARD=Linux BUILDER=gcc GCOV=
|
||||||
|
- CONF=debug BOARD=Linux BUILDER=gcc GCOV=--gcov
|
||||||
|
|
||||||
before_script:
|
before_script:
|
||||||
- cd ..
|
- cd ..
|
||||||
|
- wget http://atria-soft.com/ci/coverage_send.py
|
||||||
|
- wget http://atria-soft.com/ci/test_send.py
|
||||||
|
- wget http://atria-soft.com/ci/warning_send.py
|
||||||
- mkdir bin
|
- mkdir bin
|
||||||
- curl https://storage.googleapis.com/git-repo-downloads/repo > bin/repo
|
- curl https://storage.googleapis.com/git-repo-downloads/repo > bin/repo
|
||||||
- chmod a+x bin/repo
|
- chmod a+x bin/repo
|
||||||
@ -44,11 +50,17 @@ before_script:
|
|||||||
- cd ..
|
- cd ..
|
||||||
- pwd
|
- pwd
|
||||||
- ls -l
|
- ls -l
|
||||||
- if [ "$CXX" == "clang++" ]; then BUILDER=clang; else BUILDER=gcc; fi
|
- if [ "$BUILDER" == "gcc" ]; then COMPILATOR_OPTION="--compilator-version=4.9"; else COMPILATOR_OPTION=""; fi
|
||||||
- if [ "$CXX" == "g++" ]; then COMPILATOR_OPTION="--compilator-version=4.9"; else COMPILATOR_OPTION=""; fi
|
|
||||||
|
|
||||||
script:
|
script:
|
||||||
- lutin -C -P -c$BUILDER $COMPILATOR_OPTION -mdebug -p gale gale-sample-basic
|
- lutin -w -j4 -C -P -c $BUILDER $COMPILATOR_OPTION -m $CONF $GCOV -p gale gale-sample-basic
|
||||||
|
|
||||||
|
after_script:
|
||||||
|
- if [ "$GCOV" != "" ]; then python ./warning_send.py --find-path ./out/Linux_x86_64/$CONF/build/$BUILDER/gale/ ; fi
|
||||||
|
- ./out/Linux_x86_64/$CONF/staging/$BUILDER/gale-sample-basic/usr/bin/gale-sample-basic -l6 | tee out_test.txt
|
||||||
|
#- if [ "$GCOV" != "" ]; then python ./test_send.py --file=out_test.txt; fi
|
||||||
|
#- if [ "$GCOV" != "" ]; then lutin -C -P -c $BUILDER $COMPILATOR_OPTION -m $CONF -p gale?gcov; fi
|
||||||
|
#- if [ "$GCOV" != "" ]; then python ./coverage_send.py --json=out/Linux_x86_64/$CONF/build/$BUILDER/gale/gale_coverage.json; fi
|
||||||
|
|
||||||
notifications:
|
notifications:
|
||||||
email:
|
email:
|
||||||
|
41
README.md
41
README.md
@ -1,2 +1,43 @@
|
|||||||
|
gale
|
||||||
|
====
|
||||||
|
|
||||||
|
`gale` is an abtracter of the low level graphic windowing (like the SDL but in C++11)
|
||||||
|
|
||||||
|
It is designed to abstract systems
|
||||||
|
- Linux
|
||||||
|
- MacOs
|
||||||
|
- Windows
|
||||||
|
- Android
|
||||||
|
- Ios
|
||||||
|
|
||||||
|
[](https://travis-ci.org/atria-soft/gale)
|
||||||
|
|
||||||
|
[](http://atria-soft.com/ci/atria-soft/gale)
|
||||||
|
|
||||||
|
[](http://atria-soft.com/ci/atria-soft/gale)
|
||||||
|
|
||||||
|
[](http://atria-soft.com/ci/atria-soft/gale)
|
||||||
|
|
||||||
|
Instructions
|
||||||
|
============
|
||||||
|
|
||||||
|
|
||||||
|
License (APACHE v2.0)
|
||||||
|
=====================
|
||||||
|
Copyright gale Edouard DUPIN
|
||||||
|
|
||||||
|
Licensed under the Apache License, Version 2.0 (the "License");
|
||||||
|
you may not use this file except in compliance with the License.
|
||||||
|
You may obtain a copy of the License at
|
||||||
|
|
||||||
|
http://www.apache.org/licenses/LICENSE-2.0
|
||||||
|
|
||||||
|
Unless required by applicable law or agreed to in writing, software
|
||||||
|
distributed under the License is distributed on an "AS IS" BASIS,
|
||||||
|
WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
|
||||||
|
See the License for the specific language governing permissions and
|
||||||
|
limitations under the License.
|
||||||
|
|
||||||
|
|
||||||
# gale
|
# gale
|
||||||
(APACHE-2) Graphic Abstraction Layer for Ewol: abstract the OpenGL/... interface and mouse/touch/keyboard for multiple system (Linux, Android, MacOs, Windows, Ios)
|
(APACHE-2) Graphic Abstraction Layer for Ewol: abstract the OpenGL/... interface and mouse/touch/keyboard for multiple system (Linux, Android, MacOs, Windows, Ios)
|
||||||
|
Loading…
x
Reference in New Issue
Block a user