Skip to content
Snippets Groups Projects
Select Git revision
  • 89b10ae98587dea316ed2c4d0e0646b3e6970d91
  • master default protected
  • indexpage/contact-mail
3 results

.gitlab-ci.yml

Blame
  • .gitlab-ci.yml 384 B
    image: ruby:3.0
    
    stages:
      - test
      - build
    
    variables:
      JEKYLL_ENV: production
      
    before_script:
      - gem install bundler jekyll --no-document
      - bundle install
    
    test:
      stage: test
      script:
        - bundle exec ruby scripts/check_oai_pmh.rb
      allow_failure: true
    
    build:
      stage: build
      script:
        - bundle exec jekyll build
      artifacts:
        paths:
          - _site
        expire_in: 1d