From 2596864c8c47dd9316f3defc7d5cbbe0d308c087 Mon Sep 17 00:00:00 2001 From: "Dustin C. Hatch" Date: Thu, 25 Sep 2025 18:30:34 -0500 Subject: [PATCH] ci: Begin Jenkins build pipeline Specifying these compute resources to ensure builds to not run on Raspberry Pi nodes, but instead trigger the autoscaler to launch an EC2 instance to run them. --- ci/Jenkinsfile | 10 ++++++++++ 1 file changed, 10 insertions(+) create mode 100644 ci/Jenkinsfile diff --git a/ci/Jenkinsfile b/ci/Jenkinsfile new file mode 100644 index 0000000..1d3dd3b --- /dev/null +++ b/ci/Jenkinsfile @@ -0,0 +1,10 @@ +@Library('containerimages')_ +buildContainerImage2( + project: 'packages', + archlist: ['amd64', 'arm64'], + defaultBranch: 'master', + resources: [ + cpu: 4, + memory: '2Gi', + ], +)