Skip to content

Commit

Permalink
добавил в скрипт CI сборку компиляторов
Browse files Browse the repository at this point in the history
  • Loading branch information
abramcumner committed Jan 30, 2017
1 parent 13a3840 commit c073219
Showing 1 changed file with 31 additions and 7 deletions.
38 changes: 31 additions & 7 deletions appveyor.yml
Original file line number Diff line number Diff line change
Expand Up @@ -43,18 +43,42 @@ after_build:
echo appveyor PushArtifact cop_%APPVEYOR_REPO_TAG_NAME%_%COR_PLAT%.7z release
echo ===================== engine pdb files =====================
echo ===================== sdk files =====================
md dist\engine_pdb_%COR_PLAT%
md dist\sdk_%COR_PLAT%
copy intermediate\%PLATFORM%-%CONFIGURATION%\*.pdb dist\engine_pdb_%COR_PLAT%\
copy SDK\binaries\%COR_PLAT%\MagicFM.dll dist\sdk_%COR_PLAT%\
7z a cop_%APPVEYOR_REPO_TAG_NAME%_%COR_PLAT%_pdb.7z dist\engine_pdb_%COR_PLAT%\*
copy SDK\binaries\%COR_PLAT%\nvtt.dll dist\sdk_%COR_PLAT%\
copy intermediate\%PLATFORM%-%CONFIGURATION%\BugTrap.dll dist\sdk_%COR_PLAT%\
copy intermediate\%PLATFORM%-%CONFIGURATION%\xrCore.dll dist\sdk_%COR_PLAT%\
copy intermediate\%PLATFORM%-%CONFIGURATION%\lua.JIT.1.1.4.dll dist\sdk_%COR_PLAT%\
copy intermediate\%PLATFORM%-%CONFIGURATION%\luabind.beta7-devel.rc4.dll dist\sdk_%COR_PLAT%\
copy intermediate\%PLATFORM%-%CONFIGURATION%\xrCDB.dll dist\sdk_%COR_PLAT%\
copy intermediate\%PLATFORM%-%CONFIGURATION%\xrAPI.dll dist\sdk_%COR_PLAT%\
copy intermediate\%PLATFORM%-%CONFIGURATION%\xrXMLParser.dll dist\sdk_%COR_PLAT%\
copy intermediate\%PLATFORM%-%CONFIGURATION%\luabind.0.9.dll dist\sdk_%COR_PLAT%\
copy intermediate\%PLATFORM%-%CONFIGURATION%\SDK\*.exe dist\sdk_%COR_PLAT%\
copy intermediate\%PLATFORM%-%CONFIGURATION%\SDK\*.dll dist\sdk_%COR_PLAT%\
7z a cop_compilers_%APPVEYOR_REPO_TAG_NAME%_%COR_PLAT%.7z dist\sdk_%COR_PLAT%\*
echo appveyor PushArtifact cop_compilers_%APPVEYOR_REPO_TAG_NAME%_%COR_PLAT%.7z release
artifacts:
- path: .\cop_$(appveyor_repo_tag_name)_$(cor_plat).7z
name: release
- path: .\cop_$(appveyor_repo_tag_name)_$(cor_plat)_pdb.7z
- path: .\cs_$(appveyor_repo_tag_name)_$(cor_plat).7z
name: release
- path: .\cs_compilers_$(appveyor_repo_tag_name)_$(cor_plat).7z
name: release
deploy:
- provider: GitHub
auth_token:
Expand Down

0 comments on commit c073219

Please sign in to comment.