mirror of
https://github.com/simh/simh.git
synced 2026-02-01 06:13:34 +00:00
24 lines
593 B
YAML
24 lines
593 B
YAML
platform:
|
|
- x86
|
|
cache:
|
|
- ../windows-build
|
|
skip_commits:
|
|
files:
|
|
- doc/*
|
|
- '**/*.md'
|
|
- '**/*.txt'
|
|
before_build:
|
|
"\"C:\\Program Files (x86)\\Microsoft Visual Studio 9.0\\VC\\vcvarsall.bat\""
|
|
build_script:
|
|
- cmd: cd "Visual Studio Projects" & vcbuild /M%NUMBER_OF_PROCESSORS% /useenv /rebuild Simh.sln "Release|Win32"
|
|
- ps: mkdir PACKAGES
|
|
- ps: Compress-Archive -Path BIN\*.exe -DestinationPath PACKAGES\simh-Windows-Release-archive.zip
|
|
|
|
artifacts:
|
|
- path: PACKAGES\*.zip
|
|
|
|
notifications:
|
|
- provider: Email
|
|
to:
|
|
- Mark@infocomm.com
|
|
on_build_success: false |