Commit ffc69d81 authored by Martin Tzvetanov Grigorov's avatar Martin Tzvetanov Grigorov Committed by guillaume quintard

Add 'arch' to the jobs, so that it tests both amd64 and arm64 on Linux

parent 2f2ef590
...@@ -11,6 +11,7 @@ jobs: ...@@ -11,6 +11,7 @@ jobs:
stage: test stage: test
os: linux os: linux
dist: xenial dist: xenial
arch: amd64
compiler: clang compiler: clang
addons: addons:
apt: apt:
...@@ -19,6 +20,7 @@ jobs: ...@@ -19,6 +20,7 @@ jobs:
- python3-docutils - python3-docutils
- python3-sphinx - python3-sphinx
- libunwind-dev - libunwind-dev
- libpcre3-dev
before_script: before_script:
- ./autogen.sh - ./autogen.sh
- ./configure --with-unwind - ./configure --with-unwind
...@@ -29,8 +31,16 @@ jobs: ...@@ -29,8 +31,16 @@ jobs:
else else
make -j3 check VERBOSE=1 make -j3 check VERBOSE=1
fi fi
- <<: *test-linux
arch: arm64
- <<: *test-linux
compiler: gcc
before_script:
- ./autogen.sh
- ./configure
- <<: *test-linux - <<: *test-linux
compiler: gcc compiler: gcc
arch: arm64
before_script: before_script:
- ./autogen.sh - ./autogen.sh
- ./configure - ./configure
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment