mirror of
https://github.com/NVIDIA/cuda-samples.git
synced 2025-04-19 22:42:21 +08:00
12 lines
150 B
Groovy
12 lines
150 B
Groovy
pipeline {
|
|
agent any
|
|
|
|
stages {
|
|
stage('Build') {
|
|
steps {
|
|
echo 'Building..'
|
|
}
|
|
}
|
|
}
|
|
}
|