MSYSTEM now defaults to MSYS when not specified, and there is no different behavior anymore between empty value and MSYS, for example /opt/bin was not being added to path when not setting MSYSTEM. This removes the need for explicitly setting the variable, since a default value is now implied.
26 lines
841 B
YAML
26 lines
841 B
YAML
environment:
|
|
DEPLOY_PROVIDER: bintray
|
|
BINTRAY_ACCOUNT: alexpux
|
|
BINTRAY_REPOSITORY: msys2
|
|
PACMAN_REPOSITORY_NAME: ci.msys
|
|
BUILD_URL: https://ci.appveyor.com/project/$(APPVEYOR_ACCOUNT_NAME)/$(APPVEYOR_PROJECT_NAME)/build/$(APPVEYOR_BUILD_VERSION)
|
|
|
|
build_script:
|
|
- C:\msys64\usr\bin\pacman --noconfirm --sync --refresh --refresh --sysupgrade --sysupgrade
|
|
- C:\msys64\usr\bin\bash --login -c "$(cygpath ${APPVEYOR_BUILD_FOLDER})/ci-build.sh"
|
|
|
|
artifacts:
|
|
- path: artifacts\*
|
|
|
|
deploy:
|
|
- provider: BinTray
|
|
username: $(BINTRAY_ACCOUNT)
|
|
subject: $(BINTRAY_ACCOUNT)
|
|
repo: $(BINTRAY_REPOSITORY)
|
|
package: $(PACMAN_REPOSITORY_NAME)
|
|
version: latest
|
|
publish: true
|
|
override: true
|
|
api_key:
|
|
secure: B2XBLbsX8EQOpWyyaHskipMoF2+Tbt6hc/afbVm82f01CBKruspjwhee4K4C7/xf
|