代码拉取完成,页面将自动刷新
同步操作将从 Gitee 极速下载/gitextensions 强制同步,此操作会覆盖自 Fork 仓库以来所做的任何修改,且无法恢复!!!
确定后同步将在后台操作,完成时将刷新页面,请耐心等待。
version: 3.3.1.{build}
os: Visual Studio 2017
branches:
except:
- configdata
- gh-pages
environment:
matrix:
- IdeVersion: VS2017
SKIP_PAUSE: TRUE
ARCHIVE_WITH_PDB: TRUE
init:
- ps: iex ((new-object net.webclient).DownloadString('https://raw.githubusercontent.com/appveyor/ci/master/scripts/enable-rdp.ps1'))
# Build settings, not to be confused with "before_build" and "after_build".
# "project" is relative to the original build directory and not influenced by directory changes in "before_build".
build:
# enable MSBuild parallel builds
parallel: true
# MSBuild verbosity level
verbosity: minimal
cache:
#- packages -> **\packages.config # preserve "packages" directory in the root of build folder but will reset it if packages.config is modified
- packages\WiX.3.11.0 -> Setup\packages.config
install:
- cmd: git submodule update --init --recursive
- cmd: echo /logger:"%ProgramFiles%\AppVeyor\BuildAgent\Appveyor.MSBuildLogger.dll">> Directory.Build.rsp
- cmd: |-
cd Setup
C:\\Python35\\python set_version_to.py -v %APPVEYOR_BUILD_VERSION% -t %APPVEYOR_BUILD_VERSION%
cd ..
# to run your custom scripts instead of automatic MSBuild
build_script:
- ps: |
Write-Output "Platform: $env:IdeVersion"
# for release branches mark the repo as clean
if (!$env:APPVEYOR_PULL_REQUEST_TITLE) {
& Build\Mark-RepoClean.ps1
}
# build
& .\Setup\Build.cmd
if ($LastExitCode -ne 0) { $host.SetShouldExit($LastExitCode) }
# for pull-reqests enforce updated translations
# if any strings have changed and the author hasn't updated translations,
# we will get changes to either English.xlf and/or English.Plugins.xlf - if so, fail the build
if ($env:APPVEYOR_PULL_REQUEST_TITLE) {
& .\Build\transifex\UpdateLocalEnglishTranslations.ps1
# stage all modified files, as some translations yield no content change, but are seeing as file changed until stages
git add *.xlf --ignore-errors
# look for any modified xlf files, and if any - fail the build
if ( $( git status --porcelain ) | ?{ $_.EndsWith('.xlf') } ) {
& git diff --cached > git-diff-xlf.txt
Push-AppveyorArtifact ./git-diff-xlf.txt
throw "Please update English translations and re-submit the pull-request.`r`nFor more information please refer to https://github.com/gitextensions/gitextensions/wiki/Translations";
$host.SetShouldExit(-10);
}
}
# to run your custom scripts instead of automatic tests
test_script:
- ps: |
Write-Host "Tests are running..."
Write-Host $pwd
& .\Build\Run-Tests.ps1
# scripts to run after tests
after_test:
- ps: |
Write-Host "Preparing build artifacts..."
& .\Build\Prepare-Artifacts.ps1
artifacts:
# upload the generated portable archive only
- path: 'combined.*-unsigned.zip'
- path: GitExtensions-pdbs-*.zip
deploy:
- provider: Webhook
on:
ARTIFACT_SIGNING_ENABLED: true
url: https://app.signpath.io/API/v1/7c19b2cf-90f7-4d15-9b12-1b615f7c18c4/Integrations/AppVeyor?SigningPolicyId=5c9879c7-0dea-4303-8e5b-fc4192a7b0de
on_build_success: true
on_build_failure: false
on_build_status_changed: false
method: POST
authorization:
secure: RdmJQ3LAsGIbtqbxlcn7wF8ESTbPSDiR0Fmyt11mDl+avSDd0HKexHA+sWQA3cN1K8aVnKTzvjGTQS8DSDmLzQ==
此处可能存在不合适展示的内容,页面不予展示。您可通过相关编辑功能自查并修改。
如您确认内容无涉及 不当用语 / 纯广告导流 / 暴力 / 低俗色情 / 侵权 / 盗版 / 虚假 / 无价值内容或违法国家有关法律法规的内容,可点击提交进行申诉,我们将尽快为您处理。