Gitlab CI using ROOT

Here are my two cents contribution !

Is there any chance to add a Gitlab section in this install page of ROOT ? It would have spare me some time :slight_smile: Hope it would be useful for anybody that have the same issue here

image: rootproject/root:latest 

cmvfs:
  stage: build
  script:
    - echo "CERN CVMFS repository"
    - ls -ls /cvmfs/sft.cern.ch/lcg/app/releases/
  tags:
    - cvmfs

root:
  stage: build
  script:
    - echo -ne "ROOT Version "
    - which root
    - echo "ROOT Features"
    - root-config --features

1 Like