Skip to content

Commit

Permalink
Support all platforms for Jenkins
Browse files Browse the repository at this point in the history
  • Loading branch information
sweoggy authored Nov 21, 2024
1 parent 71c0dfe commit fd4009f
Showing 1 changed file with 13 additions and 1 deletion.
14 changes: 13 additions & 1 deletion examples/templates/Jenkins/Jenkinsfile
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,19 @@ pipeline {
stage('Debricked Scan') {
steps {
script {
sh 'curl -LsS https://github.com/debricked/cli/releases/download/release-v2/cli_linux_x86_64.tar.gz | tar -xz debricked'
// Inspiration taken from https://github.com/trustin/os-maven-plugin/blob/master/src/main/java/kr/motd/maven/os/Detector.java
def osName = System.getProperty("os.name").toLowerCase(Locale.US).replaceAll("[^a-z0-9]+", "")
if (osName.startsWith("linux")) { osName = "linux" }
else if (osName.startsWith("mac") || osName.startsWith("osx")) { osName = "macOS" }
else if (osName.startsWith("windows")) { osName = "windows" }

def osArch = System.getProperty("os.arch").toLowerCase(Locale.US).replaceAll("[^a-z0-9]+", "")
if (osArch.matches("(x8664|amd64|ia32e|em64t|x64)")) { osArch = "x86_64" }
else if (osArch.matches("(x8632|x86|i[3-6]86|ia32|x32)")) { osArch = "i386" }
else if (osArch.matches("(aarch_64)")) { osArch = "arm64" }

println("OS detected: " + osName + " and architecture " + osArch)
sh 'curl -LsS https://github.com/debricked/cli/releases/download/release-v2/cli_' + osName + '_' + osArch + '.tar.gz | tar -xz debricked'
sh './debricked scan'
}
}
Expand Down

0 comments on commit fd4009f

Please sign in to comment.