]> git.ipfire.org Git - thirdparty/nettle.git/commitdiff
.gitlab-ci.yml: added aarch64 build
authorNikos Mavrogiannopoulos <nmav@redhat.com>
Thu, 5 Oct 2017 13:27:14 +0000 (15:27 +0200)
committerNiels Möller <nisse@lysator.liu.se>
Sat, 14 Oct 2017 06:49:08 +0000 (08:49 +0200)
Signed-off-by: Nikos Mavrogiannopoulos <nmav@redhat.com>
.gitlab-ci.yml

index ad6c24fd54922119876a5be10fbeee2cdbc52ec4..a30d31f3f4b8237688f0a0f535cea432c34c403d 100644 (file)
@@ -8,7 +8,7 @@ before_script:
  - yum install -y git make autoconf libtool automake gettext-devel glibc-devel gcc valgrind libasan-static libgcc.i686 glibc-devel.i686
 
 # See http://doc.gitlab.com/ce/ci/yaml/ for documentation.
-Build and Check (x86-64):
+build/x86-64:
   script:
   - yum install -y gmp-devel
   - ./.bootstrap &&
@@ -18,7 +18,7 @@ Build and Check (x86-64):
   - shared
   except:
   - tags
-Build and Check (x86):
+build/x86:
   script:
   - yum install -y gmp-devel.i686
   - ./.bootstrap &&
@@ -28,6 +28,19 @@ Build and Check (x86):
   - shared
   except:
   - tags
+build/aarch64:
+  before_script:
+  - /bin/true
+  script:
+  - ./.bootstrap &&
+    ./configure --enable-fat --disable-documentation && make -j4 &&
+    make check -j4
+  tags:
+  - aarch64
+  only:
+  - branches@gnutls/nettle
+  except:
+  - tags
 Build and Check with mini-gmp:
   script:
   - ./.bootstrap &&