2 Commits

Author SHA1 Message Date
26ffb213cc Merge branch 'master' of https://gitea.moustos.net/dionmoustos/PokemonEmeraldSafariFrontier
Some checks failed
CI / build (push) Has been cancelled
2026-01-30 20:21:35 +10:30
5b0768536a use docker and install dependencies 2026-01-30 20:21:30 +10:30

17
Jenkinsfile vendored
View File

@@ -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