Skip to content
Snippets Groups Projects
Select Git revision
  • b73e7bb05400bbdbd548ddbaf3fcf2f1b1610419
  • main default protected
  • jw_sonar
  • v6.0.0 protected
  • update-dependencies
  • v5.0.0 protected
  • jw_sonar_backup
  • move-to-esm-only
  • 6.0.0-dev
  • 5.0.0
  • 4.2.0
  • 4.1.1
  • 4.1.0
  • 4.0.0
  • 3.5.0
  • 3.4.0
  • 3.3.0
  • 3.2.0
  • 3.1.0
  • 3.0.1
  • 3.0.0
  • 2.2.0
  • 2.1.0
  • 2.0.0
  • v1.0.1
25 results

config.env

Blame
  • assignment_gitlab_ci.yml 771 B
    ###################################################################################################################
    # DO NOT MODIFY THIS FILE
    # This file is the ci/cd pipeline that will be used to test your assignment
    ###################################################################################################################
    
    variables:
        GIT_SUBMODULE_STRATEGY: recursive
        GIT_SUBMODULE_FORCE_HTTPS: "true"
        DOCKER_HOST: tcp://docker:2375
        DOCKER_TLS_CERTDIR:
        DOCKER_DRIVER: overlay2
    
    stages:
        - dojo
    
    dojo:
        stage: dojo
        tags:
            - dojo_assignment
        services:
            - docker:24.0.6-dind
        image:
            name: {{DOCKERHUB_REPO_ASSIGNMENT_CHECKER}}:latest
        script:
            - dojo_assignment_checker
        allow_failure: false