ci: specify nix version via agent label
Will make it easier and safer to upgrade Nix on CI hosts. Also added architecture since we are starting to mix those. Signed-off-by: Jakub Sokołowski <jakub@status.im>
This commit is contained in:
parent
83a7d3fafc
commit
525577ab17
|
@ -1,7 +1,7 @@
|
|||
library 'status-jenkins-lib@v1.3.3'
|
||||
|
||||
pipeline {
|
||||
agent { label 'linux' }
|
||||
agent { label 'linux && x86_64 && nix-2.3' }
|
||||
|
||||
options {
|
||||
timestamps()
|
||||
|
|
|
@ -1,7 +1,7 @@
|
|||
library 'status-jenkins-lib@v1.3.3'
|
||||
|
||||
pipeline {
|
||||
agent { label 'macos && x86_64 && xcode-12.5' }
|
||||
agent { label 'macos && x86_64 && nix-2.3 && xcode-12.5' }
|
||||
|
||||
parameters {
|
||||
string(
|
||||
|
|
Loading…
Reference in New Issue