5 Commits

Author SHA1 Message Date
dionmoustos 26ffb213cc Merge branch 'master' of https://gitea.moustos.net/dionmoustos/PokemonEmeraldSafariFrontier
CI / build (push) Has been cancelled
2026-01-30 20:21:35 +10:30
dionmoustos 5b0768536a use docker and install dependencies 2026-01-30 20:21:30 +10:30
dionmoustos d509c399d5 Update Jenkinsfile
CI / build (push) Has been cancelled
2026-01-30 20:18:52 +10:30
dionmoustos 01b3b7a401 jenkins
CI / build (push) Has been cancelled
2026-01-30 20:17:16 +10:30
dionmoustos 7a7b469b54 set limit to 252 (#23)
CI / build (push) Has been cancelled
Reviewed-on: #23
2026-01-30 18:22:13 +10:30
Vendored
+47
View File
@@ -0,0 +1,47 @@
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
}
}
stage('Configure') {
steps {
sh '''
mkdir -p build
cd build
cmake ..
'''
}
}
stage('Build') {
steps {
sh '''
cd build
make -j$(nproc)
'''
}
}
}
}