Skip to content

Commit

Permalink
Standardize ubutu-latest vmImage
Browse files Browse the repository at this point in the history
  • Loading branch information
jfleisher authored and NikolajBjorner committed Aug 15, 2022
1 parent e0aa32e commit 88f4664
Show file tree
Hide file tree
Showing 5 changed files with 10 additions and 9 deletions.
6 changes: 3 additions & 3 deletions azure-pipelines.yml
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,7 @@ jobs:
- job: "LinuxPythonDebug"
displayName: "Ubuntu build - python make - debug"
pool:
vmImage: "Ubuntu-latest"
vmImage: "ubuntu-latest"
strategy:
matrix:
MT:
Expand Down Expand Up @@ -102,7 +102,7 @@ jobs:
displayName: "Ubuntu build - cmake"
condition: eq(0,1)
pool:
vmImage: "Ubuntu-latest"
vmImage: "ubuntu-latest"
strategy:
matrix:
msanClang:
Expand Down Expand Up @@ -135,7 +135,7 @@ jobs:
- job: "UbuntuCMake"
displayName: "Ubuntu build - cmake"
pool:
vmImage: "Ubuntu-latest"
vmImage: "ubuntu-latest"
strategy:
matrix:
releaseClang:
Expand Down
2 changes: 1 addition & 1 deletion scripts/jsdoctest.yml
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@ stages:
- job: UbuntuDoc
displayName: "Ubuntu Doc build"
pool:
vmImage: "Ubuntu-latest"
vmImage: "ubuntu-latest"
steps:
# TODO setup emscripten with no-install, then run
- script: npm --prefix=src/api/js ci
Expand Down
3 changes: 2 additions & 1 deletion scripts/mk_nuget_task.py
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,8 @@ def mk_dir(d):
if not os.path.exists(d):
os.makedirs(d)

os_info = { 'ubuntu-18' : ('so', 'linux-x64'),
os_info = { 'ubuntu-latest' : ('so', 'linux-x64'),
'ubuntu-18' : ('so', 'linux-x64'),
'ubuntu-20' : ('so', 'linux-x64'),
'glibc-2.31' : ('so', 'linux-x64'),
'x64-win' : ('dll', 'win-x64'),
Expand Down
6 changes: 3 additions & 3 deletions scripts/nightly.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -55,7 +55,7 @@ stages:
- job: UbuntuDoc
displayName: "Ubuntu Doc build"
pool:
vmImage: "Ubuntu-latest"
vmImage: "ubuntu-latest"
steps:
- script: sudo apt-get install ocaml opam libgmp-dev
- script: opam init -y
Expand Down Expand Up @@ -92,7 +92,7 @@ stages:
name: ManyLinux
displayName: "ManyLinux build"
pool:
vmImage: "Ubuntu-18.04"
vmImage: "ubuntu-latest"
container: "quay.io/pypa/manylinux2010_x86_64:latest"
steps:
- script: $(python) scripts/mk_unix_dist.py --nodotnet --nojava
Expand All @@ -111,7 +111,7 @@ stages:
# name: MuslLinux
# displayName: "MuslLinux build"
# pool:
# vmImage: "Ubuntu-18.04"
# vmImage: "ubuntu-latest"
# container: "quay.io/pypa/musllinux_1_1_x86_64:latest"
# steps:
# - script: $(python) scripts/mk_unix_dist.py --nodotnet --nojava
Expand Down
2 changes: 1 addition & 1 deletion scripts/release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -91,7 +91,7 @@ stages:
- job: UbuntuDoc
displayName: "Ubuntu Doc build"
pool:
vmImage: "Ubuntu-latest"
vmImage: "ubuntu-latest"
steps:
- script: sudo apt-get install ocaml opam libgmp-dev
- script: opam init -y
Expand Down

0 comments on commit 88f4664

Please sign in to comment.