diff --git a/ci/Jenkinsfile.android b/ci/Jenkinsfile.android index da58dcaed7..876c33a5f2 100644 --- a/ci/Jenkinsfile.android +++ b/ci/Jenkinsfile.android @@ -4,7 +4,7 @@ library 'status-jenkins-lib@v1.7.9' def isPRBuild = utils.isPRBuild() pipeline { - agent { label 'linux && x86_64 && nix-2.11' } + agent { label 'linux && x86_64 && nix-2.14' } options { timestamps() diff --git a/ci/Jenkinsfile.ios b/ci/Jenkinsfile.ios index c561c8dd21..ee2c0b251b 100644 --- a/ci/Jenkinsfile.ios +++ b/ci/Jenkinsfile.ios @@ -4,7 +4,7 @@ library 'status-jenkins-lib@v1.7.9' def isPRBuild = utils.isPRBuild() pipeline { - agent { label 'macos && arm64 && nix-2.11 && xcode-14.3' } + agent { label 'macos && arm64 && nix-2.14 && xcode-14.3' } parameters { string( diff --git a/ci/Jenkinsfile.tests b/ci/Jenkinsfile.tests index fe5591c1d0..50b0568c9a 100644 --- a/ci/Jenkinsfile.tests +++ b/ci/Jenkinsfile.tests @@ -4,7 +4,7 @@ library 'status-jenkins-lib@v1.7.9' def isPRBuild = utils.isPRBuild() pipeline { - agent { label 'linux && x86_64 && nix-2.11' } + agent { label 'linux && x86_64 && nix-2.14' } options { timestamps() diff --git a/nix/scripts/setup.sh b/nix/scripts/setup.sh index a8e82b0968..ab56440869 100755 --- a/nix/scripts/setup.sh +++ b/nix/scripts/setup.sh @@ -6,9 +6,9 @@ GIT_ROOT=$(cd "${BASH_SOURCE%/*}" && git rev-parse --show-toplevel) source "${GIT_ROOT}/nix/scripts/lib.sh" source "${GIT_ROOT}/scripts/colors.sh" -NIX_VERSION="2.11.1" +NIX_VERSION="2.14.1" NIX_INSTALL_URL="https://nixos.org/releases/nix/nix-${NIX_VERSION}/install" -NIX_INSTALL_SHA256="4569a01dc5f62056f29f3195673bc3242fc70bf2474927fb5d8549c4d997402d" +NIX_INSTALL_SHA256="565974057264f0536f600c68d59395927cd73e9fc5a60f33c1906e8f7bc33fcf" NIX_INSTALL_PATH="/tmp/nix-install-${NIX_VERSION}" install_nix() {