From 8df45b442b1df7b36c3e9c66e704bd37d6ed3f95 Mon Sep 17 00:00:00 2001 From: Nikolaj Bjorner Date: Wed, 5 Mar 2025 13:58:39 -0800 Subject: [PATCH] try ubuntu 24 Signed-off-by: Nikolaj Bjorner --- scripts/nightly.yaml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/scripts/nightly.yaml b/scripts/nightly.yaml index 3f000c57f..eaad8fa69 100644 --- a/scripts/nightly.yaml +++ b/scripts/nightly.yaml @@ -453,7 +453,7 @@ stages: - job: Python displayName: "Python packaging" pool: - vmImage: "ubuntu-latest" + vmImage: "ubuntu-24.04" steps: - task: DownloadPipelineArtifact@2 displayName: 'Download macOS Build' @@ -490,7 +490,7 @@ stages: # - script: cd $(Agent.TempDirectory); mkdir musl-bin; cd musl-bin; unzip ../*-linux.zip - script: cd $(Agent.TempDirectory); mkdir win32-bin; cd win32-bin; unzip ../*x86-win*.zip - script: cd $(Agent.TempDirectory); mkdir win64-bin; cd win64-bin; unzip ../*x64-win*.zip - - script: python3 -m pip install --user -U setuptools==75 + - script: python3 -m pip install --user -U setuptools - script: cd src/api/python; python3 setup.py sdist # take a look at this PREMIUM HACK I came up with to get around the fact that the azure variable syntax overloads the bash syntax for subshells # - script: cd src/api/python; echo $(Agent.TempDirectory)/musl-bin/* | xargs printf 'PACKAGE_FROM_RELEASE=%s\n' | xargs -I '{}' env '{}' python3 setup.py bdist_wheel