added script to run on power
parent
ea844bdc5e
commit
f3e160619b
51
.travis.yml
51
.travis.yml
|
|
@ -53,6 +53,57 @@ matrix:
|
|||
android:
|
||||
components:
|
||||
- build-tools-25.0.2
|
||||
#Including script to run on power
|
||||
- env: test="x64 4.8.4 (make)"
|
||||
os: linux
|
||||
dist: trusty
|
||||
compiler: gcc
|
||||
script: make
|
||||
arch: ppc64le
|
||||
|
||||
- env: test="x64 4.8.4 (autotools)"
|
||||
os: linux
|
||||
dist: trusty
|
||||
compiler: gcc
|
||||
script: ./autogen.sh && ./configure CFLAGS="-Werror -Wno-unused-result" && make distcheck
|
||||
arch: ppc64le
|
||||
|
||||
- env: test="x64 5.0 (autotools)"
|
||||
os: linux
|
||||
dist: trusty
|
||||
compiler: clang
|
||||
script: ./autogen.sh && ./configure CFLAGS="-Werror -Wno-unused-result" && make distcheck
|
||||
arch: ppc64le
|
||||
|
||||
- env: test="x64 4.8.4 (CMake gcc)"
|
||||
os: linux
|
||||
dist: trusty
|
||||
compiler: gcc
|
||||
before_script:
|
||||
- mkdir gcc_rel && cd gcc_rel
|
||||
- cmake ..
|
||||
script: make
|
||||
arch: ppc64le
|
||||
|
||||
- env: test="x64 5.0 (CMake clang)"
|
||||
os: linux
|
||||
dist: trusty
|
||||
compiler: clang
|
||||
before_script:
|
||||
- mkdir clang_rel && cd clang_rel
|
||||
- cmake ..
|
||||
script: make
|
||||
arch: ppc64le
|
||||
|
||||
- env: test="x64 5.0 (CMake clang - Ninja) Debug"
|
||||
os: linux
|
||||
dist: trusty
|
||||
compiler: clang
|
||||
before_script:
|
||||
- mkdir clang_ninja_dbg && cd clang_ninja_dbg
|
||||
- cmake .. -GNinja -DCMAKE_BUILD_TYPE=Debug
|
||||
script: ninja
|
||||
arch: ppc64le
|
||||
install:
|
||||
- echo y | sdkmanager "ndk-bundle"
|
||||
- echo y | sdkmanager "cmake;3.6.4111459"
|
||||
|
|
|
|||
Loading…
Reference in New Issue