Skip to content
Snippets Groups Projects
config.yml 403 B
Newer Older
  • Learn to ignore specific revisions
  • dvcs:process:
      stage: process
      timeout: 1 hour
    
      needs: ["detector"]
    
      script:
    
    Whitney Armstrong's avatar
    Whitney Armstrong committed
        - bash dvcs/dvcs.sh
    
      artifacts:
        paths:
          - results
    
    dvcs:results:
      stage: collect
    
    Sylvester Joosten's avatar
    Sylvester Joosten committed
      needs: ["dvcs:process"]
    
      script:
    
        - pip install junitparser
    
          #- python dvcs/scripts/merge_results.py
    
    Whitney Armstrong's avatar
    Whitney Armstrong committed
      artifacts:
        paths:
          - results
    
            #  reports:
            #    junit: ["results/dvcs/dvcs_report.xml"]