4 Star 1 Fork 0

Gitee 极速下载 / mypaint

加入 Gitee
与超过 1200万 开发者一起发现、参与优秀开源项目,私有仓库也完全免费 :)
免费加入
此仓库是为了提升国内下载速度的镜像仓库,每日同步一次。 原始仓库: https://github.com/mypaint/mypaint
克隆/下载
.appveyor.yml 2.13 KB
一键复制 编辑 原始数据 按行查看 历史
# yml file for Appveyor
# Based of Reference at: https://www.appveyor.com/docs/appveyor-yml/
#
# Notes:
# - Indent each level of configuration with 2 spaces. Do not use tabs!
# - All section names are case-sensitive.
#---------------------------------#
# general configuration #
#---------------------------------#
# version format
version: 2.1.0-alpha+{branch}.{build}
# Do not build on tags (GitHub and BitBucket)
skip_tags: false
# Do not build feature branch with open Pull Requests
skip_branch_with_pr: true
#---------------------------------#
# environment configuration #
#---------------------------------#
# Build worker image (VM template)
image: Visual Studio 2019
# set clone depth
clone_depth: 1
matrix:
fast_finish: true
environment:
matrix:
- MSYS2_ARCH: x86_64
MSYSTEM: MINGW64
- MSYS2_ARCH: i686
MSYSTEM: MINGW32
for:
-
matrix:
except:
- MSYS2_ARCH: x86_64
# Only build the 32bit if the extensions have been modified
# TODO: Override so that tags are always built on both archs
only_commits:
files:
- lib/*.cpp
- lib/*.hpp
- lib/**/*.cpp
- lib/**/*.hpp
- lib/**/*.i
-
skip_commits:
files:
- .travis.yml
- '**/*.md'
- '**/*.txt'
- flatpak/**
- doc/**
#---------------------------------#
# Run Msys2-build commands #
#---------------------------------#
init:
- PATH C:\msys64\%MSYSTEM%\bin;C:\msys64\usr\bin;C:\msys64\bin;%PATH%
install:
# Upgrade msys2 environment
- pacman --noconfirm -Syuu
- pacman --noconfirm -Suu
- bash %APPVEYOR_BUILD_FOLDER%\windows\msys2-build.sh installdeps
build_script:
- bash %APPVEYOR_BUILD_FOLDER%\windows\msys2-build.sh build
test_script:
- bash %APPVEYOR_BUILD_FOLDER%\windows\msys2-build.sh doctest
- bash %APPVEYOR_BUILD_FOLDER%\windows\msys2-build.sh tests
after_test:
- bash %APPVEYOR_BUILD_FOLDER%\windows\msys2-build.sh clean
- bash %APPVEYOR_BUILD_FOLDER%\windows\msys2-build.sh bundle
#---------------------------------#
# artifacts configuration #
#---------------------------------#
artifacts:
- path: 'out\pkgs\*'
- path: 'out\bundles\*'
1
https://gitee.com/mirrors/mypaint.git
git@gitee.com:mirrors/mypaint.git
mirrors
mypaint
mypaint
master

搜索帮助