diff options
| author | ptitSeb <sebastien.chev@gmail.com> | 2021-09-05 13:29:17 +0200 |
|---|---|---|
| committer | ptitSeb <sebastien.chev@gmail.com> | 2021-09-05 13:29:17 +0200 |
| commit | b30993357147c2dfc2872de7353e12227e30227c (patch) | |
| tree | 23df6bb3893305e1bc37e91a2967ac9ab6fdd33e | |
| parent | c7e8044f92be32a0149e4be0e049d8a3aa486d35 (diff) | |
| download | box64-b30993357147c2dfc2872de7353e12227e30227c.tar.gz box64-b30993357147c2dfc2872de7353e12227e30227c.zip | |
[TRAVIS] Small change
| -rwxr-xr-x | .travis.yml | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/.travis.yml b/.travis.yml index 436a3cfa..b0586f15 100755 --- a/.travis.yml +++ b/.travis.yml @@ -12,7 +12,7 @@ compiler: 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 + - 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 |