Remove windows CI job

This commit is contained in:
zontreck 2024-12-18 16:34:47 -07:00
parent b3bddfc5d1
commit 63cc18cc67

24
Jenkinsfile vendored
View file

@ -59,29 +59,5 @@ pipeline {
}
}
}
stage("Build on Windows") {
agent {
label 'windows'
}
steps {
script {
bat '''
dotnet restore
dotnet publish ForgeCore.csproj --nologo -c Release --self-contained true /p:PublishSingleFile=true
'''
}
}
post {
always {
archiveArtifacts artifacts:"bin\\Release\\net8.0\\win-x64\\publish\\ForgeCore.exe"
cleanWs()
}
}
}
}
}