Verified Commit 2c012921 authored by Roman Lacko's avatar Roman Lacko
Browse files

Add GitLab CI configuration file

parent 6d7ed562
Loading
Loading
Loading
Loading

.gitlab-ci.yml

0 → 100644
+27 −0
Original line number Diff line number Diff line
image: amardikian/clang-3.8

stages:
  - build
  - test

build:
  stage: build
  tags:
    - shared-fi
  variables:
    CC: clang
    CXX: clang++
  script:
    - cmake -Bbuild -H.
    - make -Cbuild -j
  artifacts:
    untracked: true

test:
  stage: test
  tags:
    - shared-fi
  script:
    - build/fact_test -r compact
  dependencies:
    - build