From 3e01477437ffa9a886f468457f7add75dcbf2cd5 Mon Sep 17 00:00:00 2001 From: Andrew Leonard Date: Thu, 7 Mar 2024 10:38:16 +0000 Subject: [PATCH] Build using a linux devkit Signed-off-by: Andrew Leonard --- pipelines/build/common/import_lib.groovy | 21 --------------------- 1 file changed, 21 deletions(-) delete mode 100644 pipelines/build/common/import_lib.groovy diff --git a/pipelines/build/common/import_lib.groovy b/pipelines/build/common/import_lib.groovy deleted file mode 100644 index 3f2bd7949..000000000 --- a/pipelines/build/common/import_lib.groovy +++ /dev/null @@ -1,21 +0,0 @@ -package common - - -/* -Licensed under the Apache License, Version 2.0 (the "License"); -you may not use this file except in compliance with the License. -You may obtain a copy of the License at - https://www.apache.org/licenses/LICENSE-2.0 -Unless required by applicable law or agreed to in writing, software -distributed under the License is distributed on an "AS IS" BASIS, -WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. -See the License for the specific language governing permissions and -limitations under the License. -*/ - - -// Imports our custom groovy library containing classes such as MetaData.groovy, VersionInfo.groovy, etc. -def path = "pipelines/library" -sh("rm -rf ${path}/.git && cd ${path} && git init && git add --all . && git config user.email 'none' && git config user.name 'none' && git commit -m init &> /dev/null || true") -def repoPath = sh(returnStdout: true, script: "pwd").trim() + "/" + path; -library(identifier: 'local-lib@master', retriever: modernSCM([$class: 'GitSCMSource', remote: repoPath]))