ci: pin builds to hosts with specific Go version
Otherwise Go version upgrades are a pain due to randomly hitting a host with newer version of Go compiler. Signed-off-by: Jakub Sokołowski <jakub@status.im>
This commit is contained in:
parent
6b9f9a896a
commit
57e5fd66fa
|
@ -1,7 +1,7 @@
|
||||||
library 'status-jenkins-lib@v1.3.3'
|
library 'status-jenkins-lib@v1.3.3'
|
||||||
|
|
||||||
pipeline {
|
pipeline {
|
||||||
agent { label 'linux' }
|
agent { label 'linux && x86_64 && go-1.17' }
|
||||||
|
|
||||||
parameters {
|
parameters {
|
||||||
string(
|
string(
|
||||||
|
|
|
@ -1,7 +1,7 @@
|
||||||
library 'status-jenkins-lib@v1.3.3'
|
library 'status-jenkins-lib@v1.3.3'
|
||||||
|
|
||||||
pipeline {
|
pipeline {
|
||||||
agent { label 'macos && x86_64' }
|
agent { label 'macos && x86_64 && go-1.17' }
|
||||||
|
|
||||||
parameters {
|
parameters {
|
||||||
string(
|
string(
|
||||||
|
|
|
@ -1,7 +1,7 @@
|
||||||
library 'status-jenkins-lib@v1.3.3'
|
library 'status-jenkins-lib@v1.3.3'
|
||||||
|
|
||||||
pipeline {
|
pipeline {
|
||||||
agent { label 'linux' }
|
agent { label 'linux && x86_64 && go-1.17' }
|
||||||
|
|
||||||
parameters {
|
parameters {
|
||||||
string(
|
string(
|
||||||
|
|
|
@ -1,7 +1,7 @@
|
||||||
library 'status-jenkins-lib@v1.3.3'
|
library 'status-jenkins-lib@v1.3.3'
|
||||||
|
|
||||||
pipeline {
|
pipeline {
|
||||||
agent { label 'linux' }
|
agent { label 'linux && x86_64 && go-1.17' }
|
||||||
|
|
||||||
parameters {
|
parameters {
|
||||||
string(
|
string(
|
||||||
|
|
Loading…
Reference in New Issue