From 7fdffcaa1c3cf1b8f5591385d6aa18c15f038f7a Mon Sep 17 00:00:00 2001
From: Martin Weinelt <martin@darmstadt.freifunk.net>
Date: Mon, 1 Jun 2020 19:54:22 +0200
Subject: [PATCH] Jenkinsfile: require gluon-vmx label for qemu testing

This allows us to make use of builders that can't run virtual machines.

Drop the TMUX environemnt variable, it's not needed anymore.
---
 contrib/ci/Jenkinsfile | 8 ++++----
 1 file changed, 4 insertions(+), 4 deletions(-)

diff --git a/contrib/ci/Jenkinsfile b/contrib/ci/Jenkinsfile
index e4c3b4441..8acfa4922 100644
--- a/contrib/ci/Jenkinsfile
+++ b/contrib/ci/Jenkinsfile
@@ -44,10 +44,7 @@ pipeline {
 			}
 		}
 		stage('test') {
-			agent { label 'gluon-docker-v2' }
-			environment {
-				TMUX = "notmux"
-			}
+			agent { label 'gluon-vmx' }
 			steps {
 				sh label: 'Identify runner', script: 'echo $SLAVE_NAME'
 				unstash 'gluon-x86-64-factory'
@@ -79,4 +76,7 @@ pipeline {
  - gluon-docker-v2:
    - add qemu-testlab testing, requires KVM virtualization support
    - require rsync dependency to be able to build the next branch
+ - gluon-vmx
+   - splits the qemu testing from the gluon-docker-v2 label to accomodate
+     nodes without the vmx cpu flag
 */
-- 
GitLab