Skip to content
Snippets Groups Projects
Select Git revision
  • 613c76a5540a9d9028355f523a5fb59e3d9d1fbf
  • main default protected
  • QSPI-map
  • feat_dmax4
  • nanosoc_accel-2023
5 results

software_list.txt

Blame
  • Jenkinsfile 359 B
    pipeline {
      agent any
      stages {
        stage('Setup Environment') {
          steps {
            sh '''python3 -m venv env
    source env/bin/activate
    pip install -e .[full]'''
          }
        }
        stage('Test') {
          steps {
            sh 'py.test --junitxml results.xml test/'
          }
        }
        stage('xUnit') {
          steps {
            junit 'results.xml'
          }
        }
      }
    }