From baa34e830cfcc3079d43c2b402490e0f1c87277d Mon Sep 17 00:00:00 2001 From: Spacelord Date: Thu, 1 Jul 2021 10:14:05 +0200 Subject: CI> Fix missing tag pull. --- assets/ci-config | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/assets/ci-config b/assets/ci-config index ac94661..6e94df6 100644 --- a/assets/ci-config +++ b/assets/ci-config @@ -17,7 +17,7 @@ buildTypes.each{ node() { skipDefaultCheckout() stage('Checkout') { - checkout scm + checkout([$class: 'GitSCM', branches: [[name: '*/master']], extensions: [[$class: 'CloneOption', noTags: false, reference: '', shallow: false], [$class: 'CleanBeforeCheckout', deleteUntrackedNestedRepositories: true]], userRemoteConfigs: [[credentialsId: 'github_mm_key', url: 'https://github.com/cbdevnet/midimonster.git']]]) } stage("$it Build"){ @@ -47,7 +47,7 @@ builds.Test = { node() { skipDefaultCheckout() stage('Checkout') { - checkout scm + checkout([$class: 'GitSCM', branches: [[name: '*/master']], extensions: [[$class: 'CloneOption', noTags: false, reference: '', shallow: false], [$class: 'CleanBeforeCheckout', deleteUntrackedNestedRepositories: true]], userRemoteConfigs: [[credentialsId: 'github_mm_key', url: 'https://github.com/cbdevnet/midimonster.git']]]) } stage('Test') { catchError(buildResult: 'SUCCESS', stageResult: 'FAILURE') { -- cgit v1.2.3 From 4dd352f62d70340fb12cffae40c17364eddc8eea Mon Sep 17 00:00:00 2001 From: Spacelord Date: Thu, 1 Jul 2021 12:26:40 +0200 Subject: CI> Disable Shellcheck SC1117 --- assets/ci.sh | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/assets/ci.sh b/assets/ci.sh index 0bc6d4a..e633875 100755 --- a/assets/ci.sh +++ b/assets/ci.sh @@ -1,5 +1,5 @@ #!/bin/bash -# shellcheck disable=SC2001,SC2181 +# shellcheck disable=SC2001,SC2181,SC1117 ################################################ SETUP ################################################ dep_build_core=( -- cgit v1.2.3 From 124fe4d819f221bc4c0a873c2cf536a659c2d705 Mon Sep 17 00:00:00 2001 From: Spacelord Date: Thu, 1 Jul 2021 12:29:04 +0200 Subject: Installer> Disable Shellcheck SC1117 --- installer.sh | 1 + 1 file changed, 1 insertion(+) diff --git a/installer.sh b/installer.sh index 2b9f799..4a8671e 100755 --- a/installer.sh +++ b/installer.sh @@ -1,4 +1,5 @@ #!/bin/bash +# shellcheck disable=SC1117 ################################################ SETUP ################################################ dependencies=( -- cgit v1.2.3