flutter/Jenkinsfile
Armand 285e5f4db4
Some checks reported errors
firka/flutter/pipeline/head Something is wrong with the build of this commit
Add build scripts
2025-07-17 10:05:41 +00:00

22 lines
479 B
Groovy

pipeline {
agent { label 'ubuntu' }
environment {
PATH = "/home/jenkins/depot_tools:${env.PATH}"
}
stages {
stage('Build release') {
steps {
script {
sh '''#!/bin/sh
set -xe
. dev/tools/envsetup.sh
gclient sync -D
./dev/tools/build_release.sh
'''
}
}
}
}
}