mirror of https://github.com/ptitSeb/box64.git
25 lines
463 B
YAML
25 lines
463 B
YAML
language: c
|
|
arch:
|
|
- amd64
|
|
- arm64-graviton2
|
|
os: linux
|
|
dist: focal
|
|
|
|
compiler:
|
|
- gcc
|
|
|
|
addons:
|
|
apt:
|
|
packages:
|
|
- python3
|
|
|
|
#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
|
|
- ctest --output-on-failure
|