Skip to content
Snippets Groups Projects
.gitlab-ci.yml 388 B
Newer Older
  • Learn to ignore specific revisions
  • image: "ubuntu"
    
    before_script:
    
    Frank Steinberg's avatar
    Frank Steinberg committed
      - apt-get update -qq && apt-get install -y -qq make curl libxml2-utils xsltproc unzip
    
    
    stages:
      - build
    
    build:
      stage: build
      script:
        - make
        - make test
    
    Frank Steinberg's avatar
    Frank Steinberg committed
      artifacts:
        paths:
        - bjcp-2015-styleguide-orig.xml
        - bjcp-2015-styleguide-de.xml
    
        - bjcp-2015-styleguide-orig.html
        - bjcp-2015-styleguide-de.html
    
    Frank Steinberg's avatar
    Frank Steinberg committed
        expire_in: 1 week