about summary refs log tree commit diff stats
diff options
context:
space:
mode:
authorptitSeb <sebastien.chev@gmail.com>2021-09-05 13:19:28 +0200
committerptitSeb <sebastien.chev@gmail.com>2021-09-05 13:19:28 +0200
commitc7e8044f92be32a0149e4be0e049d8a3aa486d35 (patch)
tree5582984f4462f998755d5b2aec304a0b46dc53a0
parent29720048e229ad50ee066e66dadaf67966aa60e4 (diff)
downloadbox64-c7e8044f92be32a0149e4be0e049d8a3aa486d35.tar.gz
box64-c7e8044f92be32a0149e4be0e049d8a3aa486d35.zip
[TRAVIS] Try some travis build
-rwxr-xr-x.travis.yml21
1 files changed, 21 insertions, 0 deletions
diff --git a/.travis.yml b/.travis.yml
new file mode 100755
index 00000000..436a3cfa
--- /dev/null
+++ b/.travis.yml
@@ -0,0 +1,21 @@
+language: c

+sudo: false

+arch:

+  - amd64

+  - arm64

+os: linux

+

+compiler:

+    - gcc

+

+#Build steps

+before_script:

+    - mkdir build

+    - cd build

+    - if [ $TRAVIS_CPU_ARCH = arm64 ]; then cmake .. -DRK3399=1 -DCMAKE_BUILD_TYPE=RelWithDebInfo ;else cmake .. -DLD80BITS=1 -DNOALIGN=1 -DCMAKE_BUILD_TYPE=RelWithDebInfo ; fi

+

+script:

+    - make

+

+after_script:

+    - ctest
\ No newline at end of file