guile-commits
[Top][All Lists]
Advanced

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

[Guile-commits] 17/20: Add x86-32 tests to default test target


From: Andy Wingo
Subject: [Guile-commits] 17/20: Add x86-32 tests to default test target
Date: Sun, 28 Apr 2019 07:54:21 -0400 (EDT)

wingo pushed a commit to branch lightening
in repository guile.

commit eae25f464adc5e07c3ab4811fb11f446970ebc30
Author: Andy Wingo <address@hidden>
Date:   Sun Apr 28 10:48:44 2019 +0200

    Add x86-32 tests to default test target
---
 .gitlab-ci.yml | 16 +++++++++++++---
 1 file changed, 13 insertions(+), 3 deletions(-)

diff --git a/.gitlab-ci.yml b/.gitlab-ci.yml
index 384befa..891112e 100644
--- a/.gitlab-ci.yml
+++ b/.gitlab-ci.yml
@@ -1,9 +1,19 @@
 # use the official gcc image, based on debian
 # can use verions as well, like gcc:5.2
 # see https://hub.docker.com/_/gcc/
-image: gcc
+image: debian
 
-test:
+before_script:
+  - dpkg --add-architecture i386
+  - apt-get update -qq
+  - apt-get install -y libc6-dev:amd64 libc6-dev:i386 gcc gcc-multilib make
+
+x86-64:
+  stage: test
+  script:
+    - make -C tests test-native
+
+i686:
   stage: test
   script:
-    - make -C tests check
+    - make -C tests test-ia32



reply via email to

[Prev in Thread] Current Thread [Next in Thread]