# Use the official gcc image, based on debian # can use verions as well, like gcc:5.2 # see https://hub.docker.com/_/gcc/ image: gcc stages: - build build: stage: build before_script: - apt update && apt -y install libreadline-dev cmake script: - cmake . - make artifacts: paths: - lw12ctl # depending on your build setup it's most likely a good idea to cache outputs to reduce the build time cache: paths: - "*.o"