Skip to content

Instantly share code, notes, and snippets.

@gbraad
Last active July 27, 2016 03:43
Show Gist options
  • Select an option

  • Save gbraad/f1fd4efdc4699d5d98bb7e6680b7a157 to your computer and use it in GitHub Desktop.

Select an option

Save gbraad/f1fd4efdc4699d5d98bb7e6680b7a157 to your computer and use it in GitHub Desktop.
Building Ceph

Building Ceph

https://gitlab.com/gbraad/ceph-build

.gitlab-ci.yml

image: registry.gitlab.com/gbraad/centos:7

before_script:
  - yum install -y git
  - git clone git://github.com/ceph/ceph --depth 1
  - cd ceph
  - git submodule update --init --recursive
  - ./install-deps.sh

build:
  script:
    - ./do_cmake.sh
    - cd build
    - make
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment