Skip to content
Snippets Groups Projects
Select Git revision
  • ce33884d8f2e8b96565a1b6bfbcdd2c6b5d378e6
  • main default protected
  • jw_sonar
  • v6.0.0 protected
  • bedran_exercise-list
  • ask-user-to-delete-exercises-on-duplicates
  • update-dependencies
  • jw_sonar_backup
  • add_route_assignments
  • 6.0.0-dev
  • 5.0.1
  • 5.0.0
  • 4.1.0
  • 4.0.0
  • 3.5.3
  • 3.5.2
  • 3.5.1
  • 3.5.0
  • 3.4.2
  • 3.4.1
  • 3.4.0
  • 3.3.0
  • 3.2.0
  • 3.1.3
  • 3.1.2
  • 3.1.1
  • 3.1.0
  • 3.0.1
  • 3.0.0
29 results

assignment_gitlab_ci.yml

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