diff options
author | Timothee Cour <timothee.cour2@gmail.com> | 2021-05-30 13:39:17 -0700 |
---|---|---|
committer | GitHub <noreply@github.com> | 2021-05-30 22:39:17 +0200 |
commit | 4274e6e4d700ef72275344afed44d0b658729761 (patch) | |
tree | e9580650f613bb32d4a0971d1a5171e5148176c8 /azure-pipelines.yml | |
parent | a6bd6c7ed803dcef41b49343b5cd60607b984ca8 (diff) | |
download | Nim-4274e6e4d700ef72275344afed44d0b658729761.tar.gz |
upgrade ubuntu 16.04 (not supported starting dec 2021) => 18.04; revive Linux_i386 (#18107)
Diffstat (limited to 'azure-pipelines.yml')
-rw-r--r-- | azure-pipelines.yml | 14 |
1 files changed, 7 insertions, 7 deletions
diff --git a/azure-pipelines.yml b/azure-pipelines.yml index f0c3b2d0a..a70a86fae 100644 --- a/azure-pipelines.yml +++ b/azure-pipelines.yml @@ -19,14 +19,14 @@ jobs: strategy: matrix: Linux_amd64: - vmImage: 'ubuntu-16.04' + vmImage: 'ubuntu-18.04' CPU: amd64 - # pending bug #17325 (broken again) - # Linux_i386: - # # bug #17325: fails on 'ubuntu-16.04' because it now errors with: - # # g++-multilib : Depends: gcc-multilib (>= 4:5.3.1-1ubuntu1) but it is not going to be installed - # vmImage: 'ubuntu-18.04' - # CPU: i386 + # regularly breaks, refs bug #17325 + Linux_i386: + # on 'ubuntu-16.04' (not supported anymore anyways) it errored with: + # g++-multilib : Depends: gcc-multilib (>= 4:5.3.1-1ubuntu1) but it is not going to be installed + vmImage: 'ubuntu-18.04' + CPU: i386 OSX_amd64: vmImage: 'macOS-10.15' CPU: amd64 |