ci: avoid exceeding Travis time limit on arm64

Change-Id: I9c3802e07c49ed33460b6f2341950ad0b6bee71a
diff --git a/.travis.yml b/.travis.yml
index 7c63efd..3d5ee08 100644
--- a/.travis.yml
+++ b/.travis.yml
@@ -83,6 +83,10 @@
   - |
     : Enabling workarounds
     case "${TRAVIS_CPU_ARCH},${COMPILER}" in
+      arm64,g++*)
+        # Avoid exceeding the per-job time limit
+        export JOB_NAME=limited-build
+        ;;
       ppc64le,g++-7)
         # AddressSanitizer does not seem to be working
         export DISABLE_ASAN=yes