diff options
| author | ptitSeb <sebastien.chev@gmail.com> | 2021-09-05 13:19:28 +0200 |
|---|---|---|
| committer | ptitSeb <sebastien.chev@gmail.com> | 2021-09-05 13:19:28 +0200 |
| commit | c7e8044f92be32a0149e4be0e049d8a3aa486d35 (patch) | |
| tree | 5582984f4462f998755d5b2aec304a0b46dc53a0 | |
| parent | 29720048e229ad50ee066e66dadaf67966aa60e4 (diff) | |
| download | box64-c7e8044f92be32a0149e4be0e049d8a3aa486d35.tar.gz box64-c7e8044f92be32a0149e4be0e049d8a3aa486d35.zip | |
[TRAVIS] Try some travis build
| -rwxr-xr-x | .travis.yml | 21 |
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 |