summaryrefslogtreecommitdiff
path: root/.gitlab-ci.yml
blob: 99b241e61b1c9d11869c903a7be80e8326c1ba10 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
# See http://doc.gitlab.com/ce/ci/yaml/ for documentation.
Build and Check (x86-64):
  script:
  - ./.bootstrap &&
    ./configure --disable-documentation && make -j4 &&
    make check -j4
  tags:
  - x86-64
  except:
  - tags
Build and Check (x86):
  script:
  - ./.bootstrap &&
    ./configure --disable-documentation && make -j4 &&
    make check -j4
  tags:
  - x86
  except:
  - tags