diff --git a/.gitmodules b/.gitmodules index 769af42..007021e 100644 --- a/.gitmodules +++ b/.gitmodules @@ -1,9 +1,3 @@ -[submodule "buildroot"] - path = buildroot - url = https://gitlab.com/buildroot.org/buildroot.git - branch = 2025.08.x - shallow = true - [submodule "aimee-os"] path = aimee-os url = https://git.pyrocufflink.blue/AimeeOS/aimee-os.git diff --git a/buildroot b/buildroot deleted file mode 160000 index ec0d27f..0000000 --- a/buildroot +++ /dev/null @@ -1 +0,0 @@ -Subproject commit ec0d27f5667c132c5ebf4c08cfc5d29beda619c9 diff --git a/ci/Jenkinsfile b/ci/Jenkinsfile index ff4a11f..a88fff6 100644 --- a/ci/Jenkinsfile +++ b/ci/Jenkinsfile @@ -34,6 +34,31 @@ pipeline { } } + stage('Prepare') { + steps { + checkout( + poll: false, + scm: scmGit( + branches: [[name: 'refs/heads/2025.08.x']], + browser: gitLab('https://gitlab.com/buildroot.org/buildroot/'), + extensions: [ + [ + $class: 'RelativeTargetDirectory', + relativeTargetDir: 'buildroot', + ], + cloneOption( + shallow: true, + depth: 1, + ), + ], + userRemoteConfigs: [[ + url: 'https://gitlab.com/buildroot.org/buildroot.git', + ]], + ) + ) + } + } + stage('Build') { steps { sh '. ci/defconfig.sh'