appveyor jobs separated and named
This commit is contained in:
parent
0cfb6b8dd4
commit
379662ae25
47
appveyor.yml
47
appveyor.yml
|
@ -1,9 +1,40 @@
|
|||
version: 1.0.{build}
|
||||
image:
|
||||
- Visual Studio 2019
|
||||
- Ubuntu2004
|
||||
#- Ubuntu1804
|
||||
build_script:
|
||||
- cmd: pipelines/win32_build.bat
|
||||
- cmd: pipelines/win64_build.bat
|
||||
- sh: ./pipelines/linux_build.sh
|
||||
|
||||
environment:
|
||||
matrix:
|
||||
|
||||
- job_name: Windows 32
|
||||
appveyor_build_worker_image: Visual Studio 2019
|
||||
|
||||
- job_name: Windows 64
|
||||
appveyor_build_worker_image: Visual Studio 2019
|
||||
|
||||
- job_name: Ubuntu
|
||||
appveyor_build_worker_image: Ubuntu2004
|
||||
#appveyor_build_worker_image: Ubuntu1804
|
||||
|
||||
for:
|
||||
|
||||
-
|
||||
matrix:
|
||||
only:
|
||||
job_name: Windows 32
|
||||
|
||||
build_script:
|
||||
- cmd: pipelines/win32_build.bat
|
||||
|
||||
-
|
||||
matrix:
|
||||
only:
|
||||
job_name: Windows 64
|
||||
|
||||
build_script:
|
||||
- cmd: pipelines/win64_build.bat
|
||||
|
||||
-
|
||||
matrix:
|
||||
only:
|
||||
job_name: Ubuntu
|
||||
|
||||
build_script:
|
||||
- sh: ./pipelines/linux_build.sh
|
||||
|
|
Loading…
Reference in New Issue