From 5228c0718dd87bcd05f52ebf2686d9acb3cb8013 Mon Sep 17 00:00:00 2001 From: Bimba Shrestha Date: Tue, 22 Oct 2019 17:43:29 -0700 Subject: [PATCH 1/2] Adding arm64 make check --- .travis.yml | 7 +++++++ 1 file changed, 7 insertions(+) diff --git a/.travis.yml b/.travis.yml index a6e1a99ea..26db67532 100644 --- a/.travis.yml +++ b/.travis.yml @@ -222,5 +222,12 @@ matrix: - tree ./staging after_failure: - cat "$TRAVIS_BUILD_DIR"/builddir/meson-logs/testlog.txt + + # arm 64 + - name: arm64 + os: linux + arch: arm64 + script: + - make check allow_failures: - env: ALLOW_FAILURES=true From 4899b6fdbdafefa1e5cb06e4600897002d609e74 Mon Sep 17 00:00:00 2001 From: Bimba Shrestha Date: Wed, 23 Oct 2019 10:43:20 -0700 Subject: [PATCH 2/2] Moving arm64 test outside the meson scope --- .travis.yml | 12 ++++++------ 1 file changed, 6 insertions(+), 6 deletions(-) diff --git a/.travis.yml b/.travis.yml index 26db67532..97f95a60e 100644 --- a/.travis.yml +++ b/.travis.yml @@ -26,6 +26,12 @@ env: matrix: fast_finish: true include: + - name: arm64 + os: linux + arch: arm64 + script: + - make check + - name: Trusty (Test All) script: - make test @@ -223,11 +229,5 @@ matrix: after_failure: - cat "$TRAVIS_BUILD_DIR"/builddir/meson-logs/testlog.txt - # arm 64 - - name: arm64 - os: linux - arch: arm64 - script: - - make check allow_failures: - env: ALLOW_FAILURES=true