Some checks reported errors
firka/flutter/pipeline/head Something is wrong with the build of this commit
22 lines
479 B
Groovy
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
|
|
'''
|
|
}
|
|
}
|
|
}
|
|
}
|
|
}
|