Skip to content

Instantly share code, notes, and snippets.

@Nancy-Chauhan
Created April 12, 2020 15:48
Show Gist options
  • Save Nancy-Chauhan/0f85686c47337477028c5ce97b2bda8e to your computer and use it in GitHub Desktop.
Save Nancy-Chauhan/0f85686c47337477028c5ce97b2bda8e to your computer and use it in GitHub Desktop.
stage("Docker run"){
parallel{
stage("verilator"){
environment{
JOB = 'verilator'
}
steps{
dockerrun()
}
}
stage("testing 1"){
environment{
JOB = 'or1k-tests'
SIM = 'icarus'
PIPELINE = 'CAPPUCCINO'
EXPECTED_FAILURES="or1k-cy"
}
steps{
dockerrun()
}
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment