12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576777879808182838485868788899091 |
- # AU template: https://github.com/majkinetor/au-packages-template
- version: '{build}'
- max_jobs: 1
- image: WMF 5
- clone_depth: 5
- branches:
- only:
- - master
- #build:
- # verbosity: minimal
- environment:
- # Set au version to use or omit to use the latest. Specify branch name to use development version from Github
- au_version:
- au_push: true
- # Github token to commit pushed packages to repository
- github_user_repo: {github_user}/{repository}
- github_api_key:
- secure: YOUR_GITHUB_API_KEY_HERE_ENCRYPTED_STRING #https://ci.appveyor.com/tools/encrypt
- # Mail credentials - for error notifications
- mail_user:
- secure: YOUR_EMAIL_ACCOUNT_HERE_ENCRYPTED_STRING #https://ci.appveyor.com/tools/encrypt
- mail_pass:
- secure: YOUR_EMAIL_PASSWORD_HERE_ENCRYPTED_STRING #https://ci.appveyor.com/tools/encrypt
- mail_server: smtp.gmail.com
- mail_port: 587
- mail_enablessl: true
- # ID of the gist used to save run results - create a gist under the github_user (secret or not) and grab the id - https://gist.github.com/name/id
- # Optional, leave empty to create anonymous gist
- gist_id:
- # Chocolatey API key - to push updated packages
- api_key:
- secure: YOUR_CHOCO_API_KEY_HERE_ENCRYPTED_STRING # https://ci.appveyor.com/tools/encrypt
- init:
- - git config --global user.email "chocolatey@realdimensions.net"
- - git config --global user.name "Chocolatey"
- - git config --global core.safecrlf false
- install:
- - ps: 'Get-CimInstance win32_operatingsystem -Property Caption, OSArchitecture, Version | fl Caption, OSArchitecture, Version'
- - ps: $PSVersionTable
- - git --version
- - ps: |
- git clone -q https://github.com/majkinetor/au.git $Env:TEMP/au
- . "$Env:TEMP/au/scripts/Install-AU.ps1" $Env:au_version
- build_script:
- - ps: |
- if ( ($Env:APPVEYOR_SCHEDULED_BUILD -ne 'true') -and ($Env:APPVEYOR_FORCED_BUILD -ne 'true') ) {
- switch -regex ($Env:APPVEYOR_REPO_COMMIT_MESSAGE)
- {
- '\[AU (.+?)\]' { $forced = $Matches[1] }
- '\[PUSH (.+?)\]' {
- $packages = $Matches[1] -split ' '
- Write-Host "PUSHING PACKAGES: $packages"
- foreach ($package in $packages) {
- Write-Host ("{0}`n{1}`n" -f ('-'*60), "PACKAGE: $package")
- $package_dir = ls -recurse | ? { $_.Name -eq "$package.nuspec"} | select -First 1 | % Directory
- if (!$package_dir) { Write-Warning "Can't find package '$package'"; continue }
- pushd $package_dir; choco pack; Push-Package; popd
- }
- return
- }
- }
- }
- ./update_all.ps1 -ForcedPackages $forced
- 7z a au_temp.zip $Env:TEMP\chocolatey\au\*
- artifacts:
- - path: update_info.xml
- - path: Update-AUPackages.md
- - path: au_temp.zip
- notifications:
- - provider: Email
- to: $(mail_user)
- on_build_success: false
- on_build_failure: true
- on_build_status_changed: true
- #on_finish:
- #- ps: $blockRdp = $true; iex ((new-object net.webclient).DownloadString('https://raw.githubusercontent.com/appveyor/ci/master/scripts/enable-rdp.ps1'))
|