Skip to content

Commit

Permalink
project: Split appveyor jobs by platform.
Browse files Browse the repository at this point in the history
  • Loading branch information
Sibras committed Dec 15, 2019
1 parent 389a04c commit 3371d97
Showing 1 changed file with 8 additions and 8 deletions.
16 changes: 8 additions & 8 deletions SMP/appveyor.yml
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,9 @@ clone_depth: 10

configuration: Release+ReleaseDLLStaticDeps

platform: x86+x64
platform:
- x86
- x64

environment:
GITHUBTOKEN:
Expand Down Expand Up @@ -156,19 +158,17 @@ after_build:
- cmd: copy /y %APPVEYOR_BUILD_FOLDER%\..\prebuilt\licenses\*.* %APPVEYOR_BUILD_FOLDER%\build_out\licenses\

# Copy binary files to separate artifact folder
- cmd: mkdir %APPVEYOR_BUILD_FOLDER%\build_bin\x86 >NUL 2>&1
- cmd: move /y %APPVEYOR_BUILD_FOLDER%\build_out\bin\x86\*.exe %APPVEYOR_BUILD_FOLDER%\build_bin\x86
- cmd: mkdir %APPVEYOR_BUILD_FOLDER%\build_bin\x64 >NUL 2>&1
- cmd: move /y %APPVEYOR_BUILD_FOLDER%\build_out\bin\x64\*.exe %APPVEYOR_BUILD_FOLDER%\build_bin\x64
- cmd: mkdir %APPVEYOR_BUILD_FOLDER%\build_bin\%PLATFORM% >NUL 2>&1
- cmd: move /y %APPVEYOR_BUILD_FOLDER%\build_out\bin\%PLATFORM%\*.exe %APPVEYOR_BUILD_FOLDER%\build_bin\%PLATFORM%
- cmd: mkdir %APPVEYOR_BUILD_FOLDER%\build_bin\licenses >NUL 2>&1
- cmd: copy /y %APPVEYOR_BUILD_FOLDER%\build_out\licenses\ %APPVEYOR_BUILD_FOLDER%\build_bin\licenses\

artifacts:
- path: build_out
name: lib$(APPVEYOR_PROJECT_NAME)_$(APPVEYOR_REPO_TAG_NAME)_msvc$(MSVC_VER)
name: lib$(APPVEYOR_PROJECT_NAME)_$(APPVEYOR_REPO_TAG_NAME)_msvc$(MSVC_VER)_$(PLATFORM)
type: zip
- path: build_bin
name: $(APPVEYOR_PROJECT_NAME)_$(APPVEYOR_REPO_TAG_NAME)
name: $(APPVEYOR_PROJECT_NAME)_$(APPVEYOR_REPO_TAG_NAME)_$(PLATFORM)
type: zip

deploy:
Expand All @@ -177,5 +177,5 @@ deploy:
description: Pre-built static and shared libraries in 32b and 64b for $(APPVEYOR_PROJECT_NAME) $(APPVEYOR_REPO_TAG_NAME)
auth_token:
secure: aiTcAD/YitqgwuiBdC3ImXiUlHfIIDD7ayjCs3Y3aAO5vEm1gA7flCZpUZ60a5am
artifact: lib$(APPVEYOR_PROJECT_NAME)_$(APPVEYOR_REPO_TAG_NAME)_msvc$(MSVC_VER), $(APPVEYOR_PROJECT_NAME)_$(APPVEYOR_REPO_TAG_NAME)
artifact: lib$(APPVEYOR_PROJECT_NAME)_$(APPVEYOR_REPO_TAG_NAME)_msvc$(MSVC_VER)_$(PLATFORM), $(APPVEYOR_PROJECT_NAME)_$(APPVEYOR_REPO_TAG_NAME)_$(PLATFORM)
force_update: true

0 comments on commit 3371d97

Please sign in to comment.