1
0
mirror of https://github.com/lxsang/DiyaSDK.git synced 2024-06-26 15:09:47 +02:00

Update Jenkinsfile

This commit is contained in:
Dany LE 2022-08-07 00:24:57 +02:00 committed by GitHub
parent f2ca4cc988
commit 9af3fa7d6e
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

36
Jenkinsfile vendored
View File

@ -1,11 +1,3 @@
def remote = [:]
remote.name = 'workstation'
remote.host = 'workstation'
remote.user = 'dany'
remote.identityFile = '/var/jenkins_home/.ssh/id_rsa'
remote.allowAnyHosts = true
remote.agent = false
remote.logLevel = 'INFO'
pipeline{
agent { node{ label'master' }}
options {
@ -18,7 +10,7 @@ pipeline{
// Enable timestamps in build log console
timestamps()
// Maximum time to run the whole pipeline before canceling it
timeout(time: 1, unit: 'HOURS')
timeout(time: 10, unit: 'HOURS')
// Use Jenkins ANSI Color Plugin for log console
ansiColor('xterm')
// Limit build concurrency to 1 per branch
@ -26,18 +18,30 @@ pipeline{
}
stages
{
stage('Build diya image') {
stage('Build image') {
agent {
docker {
image 'xsangle/ci-yocto:focal'
// args '-v /var/jenkins_home/workspace/ant-http:/var/jenkins_home/workspace/ant-http'
reuseNode true
}
}
steps {
sshCommand remote: remote, command: '''
set -e
export WORKSPACE=$(realpath "./jenkins/workspace/Diya-image")
cd $WORKSPACE
source ./env.sh || true
sh '''#!/bin/bash
printenv
source ./env.sh
diya -c 32
diya -c 64
diya -b 32
diya -b 64
'''
'''
}
}
stage('Archive') {
steps {
script {
//archiveArtifacts artifacts: 'build/tmp/deploy/images/', fingerprint: true
}
}
}
}