reapack

Package manager for REAPER
Log | Files | Refs | Submodules | README | LICENSE

commit 27451e8a08ef552771d99208fe909b75fa9b5c97
parent a18cfc0f1bca8a50934da5c7deed5f0aeb6d91e5
Author: cfillion <cfillion@users.noreply.github.com>
Date:   Tue, 13 Oct 2020 02:51:14 -0400

appveyor: customize the job names

Diffstat:
M.appveyor.yml | 28++++++++++++++++++++--------
1 file changed, 20 insertions(+), 8 deletions(-)

diff --git a/.appveyor.yml b/.appveyor.yml @@ -8,7 +8,7 @@ test_script: - cmake --build build --target test for: - - matrix: { only: [ APPVEYOR_BUILD_WORKER_IMAGE: &linux Ubuntu1804 ] } + - matrix: { only: [ appveyor_build_worker_image: &linux Ubuntu1804 ] } install: - sudo sed -i '/arch=/! s/^deb/deb [arch=amd64,i386]/' /etc/apt/sources.list - |- @@ -61,7 +61,7 @@ for: artifacts: - path: build/reaper_reapack*.so - - matrix: { only: [ APPVEYOR_BUILD_WORKER_IMAGE: &windows Visual Studio 2019 ] } + - matrix: { only: [ appveyor_build_worker_image: &windows Visual Studio 2019 ] } cache: - C:\Tools\vcpkg\installed -> vendor\vcpkg-deps.txt install: @@ -81,12 +81,24 @@ for: environment: matrix: - - { APPVEYOR_BUILD_WORKER_IMAGE: *windows, ARCH: x64 } - - { APPVEYOR_BUILD_WORKER_IMAGE: *windows, ARCH: x86 } - - { APPVEYOR_BUILD_WORKER_IMAGE: *linux, ARCH: x86_64 } - - { APPVEYOR_BUILD_WORKER_IMAGE: *linux, ARCH: i686 } - - { APPVEYOR_BUILD_WORKER_IMAGE: *linux, ARCH: armv7l } - - { APPVEYOR_BUILD_WORKER_IMAGE: *linux, ARCH: aarch64 } + - job_name: Windows 64-bit + appveyor_build_worker_image: *windows + ARCH: x64 + - job_name: Windows 32-bit + appveyor_build_worker_image: *windows + ARCH: x86 + - job_name: Linux x86 64-bit + appveyor_build_worker_image: *linux + ARCH: x86_64 + - job_name: Linux x86 32-bit + appveyor_build_worker_image: *linux + ARCH: i686 + - job_name: Linux ARM 64-bit + appveyor_build_worker_image: *linux + ARCH: aarch64 + - job_name: Linux ARM 32-bit + appveyor_build_worker_image: *linux + ARCH: armv7l deploy: provider: GitHub