summaryrefslogtreecommitdiff
path: root/libguile/lightening/.gitlab-ci.yml
blob: 891112e87e168293bedff59115de03311238c9da (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
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: debian

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 test-ia32