You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@couchdb.apache.org by ko...@apache.org on 2022/01/18 15:24:22 UTC

[couchdb] 02/05: No need for indirection

This is an automated email from the ASF dual-hosted git repository.

kocolosk pushed a commit to branch jenkins-dynamic-matrix
in repository https://gitbox.apache.org/repos/asf/couchdb.git

commit e73f4ed43ce14c78291418499cb53b320ff0275b
Author: Adam Kocoloski <ko...@apache.org>
AuthorDate: Tue Jan 18 09:49:34 2022 -0500

    No need for indirection
---
 build-aux/Jenkinsfile.full | 7 +------
 1 file changed, 1 insertion(+), 6 deletions(-)

diff --git a/build-aux/Jenkinsfile.full b/build-aux/Jenkinsfile.full
index 8efe74b..eedd46d 100644
--- a/build-aux/Jenkinsfile.full
+++ b/build-aux/Jenkinsfile.full
@@ -13,11 +13,6 @@
 // License for the specific language governing permissions and limitations under
 // the License.
 
-
-update_qemu = '''
-docker run --rm --privileged multiarch/qemu-user-static --reset -p yes
-'''
-
 ERLANG_VERSION = '24.2'
 
 meta = [
@@ -341,7 +336,7 @@ pipeline {
           stages {
             stage('Install latest qemu binaries') {
               steps {
-                sh( script: update_qemu )
+                sh( script: 'docker run --rm --privileged multiarch/qemu-user-static --reset -p yes' )
               }
             }
             stage('Pull latest docker image') {