# Classical image for c application # see https://hub.docker.com/_/gcc/ # https://hub.docker.com/r/sylvaincolomer95/promethe-ubuntu image: sylvaincolomer95/promethe-ubuntu stages: - build - test before_script: - echo "export LC_ALL=C">>~/.bashrc - source ~/.bashrc - export LC_ALL=C - git clone https://git.cyu.fr/blaar/blc.git - cd blc - mkdir blc_build && cd blc_build && cmake .. - make - make install - cd .. build: stage: build script: - git clone https://git.cyu.fr/gaussier/drone_flyMonitor2.git - cd drone_flyMonitor2 - make - make test only: - master #image: node:6.10.0 #pages: # script: # - npm install # - npm install gatsby-cli # - node_modules/.bin/gatsby build --prefix-paths # artifacts: # paths: # - public # cache: # paths: # - node_modules # only: # - master