test commands. also install dotnet-ef
Some checks failed
gitea.arg.rip/vassago/pipeline/head There was a failure building this commit

although surely with dotnet tool list we could check, but it's cutely formatted
This commit is contained in:
adam 2025-03-25 17:30:18 -04:00
parent 660af2805e
commit bcc5389d63

29
Jenkinsfile vendored
View File

@ -7,6 +7,35 @@ pipeline {
targetHost="alloces.lan"
}
stages {
stage("environment setup") { //my environment, here on the jenkins agent
steps {
script {
sh """#!/bin/bash
function testcmd(){
if ! command -v \$1 2>&1 >/dev/null
then
echo "this agent doesn't have \$1"
exit 1
fi
}
testcmd mktemp
testcmd curl
testcmd git
testcmd sed
testcmd ssh
testcmd ssh-keyscan
testcmd ssh-keygen
testcmd scp
testcmd dotnet
dotnet tool install --global dotnet-ef
"""
}
}
}
stage('clean old'){
steps{
sh 'rm -rf bin obj'