From 4e1f1a2d7f2461368f016d786ce0269d7376e53e Mon Sep 17 00:00:00 2001 From: Andrew Steinborn Date: Tue, 29 Sep 2020 03:51:25 -0400 Subject: [PATCH] Add arm64 jobs to Travis build matrix. --- .travis.yml | 18 ++++++++++++++++++ 1 file changed, 18 insertions(+) diff --git a/.travis.yml b/.travis.yml index fc9a5db..a0ffe8f 100644 --- a/.travis.yml +++ b/.travis.yml @@ -24,6 +24,24 @@ matrix: script: - tools/run_tests.sh checksum_benchmarks static_analysis edge_case + - name: Native tests (Linux aarch64) + os: linux + dist: bionic + arch: arm64 + before_install: + - sudo apt-get install -y libz-dev valgrind clang + script: + - tools/run_tests.sh native freestanding + + - name: Checksum, static analysis, and edge case tests (Linux aarch64) + os: linux + dist: bionic + arch: arm64 + before_install: + - sudo apt-get install -y libz-dev clang python3 + script: + - tools/run_tests.sh checksum_benchmarks static_analysis edge_case + - name: gzip and cross-compile-for-Windows tests (Linux) os: linux dist: bionic