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