Bump pyspark from 3.0.2 to 3.2.2 #7
Closed
Paperspace Gradient / workflow.yaml
skipped
Aug 30, 2024 in 1s
Skipped by filters
{
"on": {
"github": {
"branches": {
"only": "main"
}
}
},
"jobs": {
"CloneRepo": {
"resources": {
"instance-type": "C3"
},
"uses": "git-checkout@v1",
"with": {
"url": "context.event.github.url",
"ref": "context.event.github.ref"
},
"outputs": {
"mnist-sample": {
"type": "volume"
}
}
},
"TrainModel": {
"resources": {
"instance-type": "C3"
},
"env": {
"PS_MODEL_PATH": "/my-trained-model"
},
"uses": "container@v1",
"with": {
"args": [
"bash",
"-c",
"cd /inputs/mnist-sample && python mnist.py"
],
"image": "tensorflow/tensorflow:1.15.5-py3"
},
"needs": [
"CloneRepo"
],
"inputs": {
"mnist-sample": "CloneRepo.outputs.mnist-sample"
}
}
}
}
Loading