Compare commits
2 Commits
d509c399d5
...
26ffb213cc
| Author | SHA1 | Date | |
|---|---|---|---|
| 26ffb213cc | |||
| 5b0768536a |
17
Jenkinsfile
vendored
17
Jenkinsfile
vendored
@@ -1,7 +1,24 @@
|
||||
pipeline {
|
||||
agent any
|
||||
|
||||
|
||||
agent {
|
||||
docker {
|
||||
image 'ubuntu:22.04'
|
||||
args '-u root'
|
||||
}
|
||||
}
|
||||
|
||||
stages {
|
||||
stage('Install Dependencies') {
|
||||
steps {
|
||||
sh '''
|
||||
apt update
|
||||
apt install -y build-essential binutils-arm-none-eabi git libpng-dev cmake
|
||||
'''
|
||||
}
|
||||
}
|
||||
|
||||
stage('Checkout') {
|
||||
steps {
|
||||
checkout scm
|
||||
|
||||
Reference in New Issue
Block a user