CI: fix pipeline using latest ubuntu (#13)

This commit is contained in:
Marco Zatta 2022-08-25 15:36:49 +02:00 коммит произвёл GitHub
Родитель c8b45ded20
Коммит 9ade9cd361
Не найден ключ, соответствующий данной подписи
Идентификатор ключа GPG: 4AEE18F83AFDEB23
1 изменённых файлов: 5 добавлений и 5 удалений

Просмотреть файл

@ -1,7 +1,7 @@
# Minimal Build pipeline # Minimal Build pipeline
# This allow us to generate wheels and upload that to a feed. # This allow us to generate wheels and upload that to a feed.
# This pipeline will run on all pr/s and every time a change is landed into master. # This pipeline will run on all pr/s and every time a change is landed into master.
# If you wish to release a wheel without the buildId appended -> manually run the pipeline # If you wish to release a wheel without the buildId appended -> manually run the pipeline
# with the release parameter set to True # with the release parameter set to True
parameters: parameters:
@ -19,9 +19,9 @@ stages:
cancelTimeoutInMinutes: 5 cancelTimeoutInMinutes: 5
strategy: strategy:
matrix: matrix:
linux_python36: linux_python38:
imageName: "ubuntu-16.04" imageName: "ubuntu-latest"
python.version: "3.6" python.version: "3.8"
WHEELS_PATH: "/dist/*.whl" WHEELS_PATH: "/dist/*.whl"
# macos1015_python36: # macos1015_python36:
# imageName: 'macOS-10.15' # imageName: 'macOS-10.15'
@ -104,4 +104,4 @@ pr:
branches: branches:
include: include:
- main - main
- releases/* - releases/*