Zack Saadioui
8/27/2024
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19
pipeline { agent any stages { stage('Clone') { steps { git 'https://github.com/your-repo.git' // Replace with your Git repo } } stage('Run Ollama') { steps { script { def modelName = 'mistral' def response = sh(script: "ollama run ${modelName}", returnStdout: true) echo response } } } } }
1
sh
1
mistral
1
java.lang.OutOfMemoryError: unable to create new native thread
Copyright © Arsturn 2024