代码拉取完成,页面将自动刷新
同步操作将从 Gitee 极速下载/cherrytree 强制同步,此操作会覆盖自 Fork 仓库以来所做的任何修改,且无法恢复!!!
确定后同步将在后台操作,完成时将刷新页面,请耐心等待。
language: cpp
jobs:
include:
- os: linux
dist: focal
arch: amd64
cache: apt
addons:
apt:
update: true
- os: linux
dist: focal
arch: arm64
cache: apt
addons:
apt:
update: true
- os: windows
- os: osx
osx_image: xcode11.6
addons:
homebrew:
packages:
- python3
- cmake
- pkg-config
- gtksourceviewmm3
- gnome-icon-theme
- gspell
- libxml++
- curl
- uchardet
- fmt
- spdlog
compiler:
- gcc
before_install:
- |-
case $TRAVIS_OS_NAME in
linux)
sudo apt install build-essential cmake libgtkmm-3.0-dev xvfb
sudo apt install libgtksourceviewmm-3.0-dev libxml++2.6-dev libsqlite3-dev
sudo apt install gettext libgspell-1-dev libcurl4-openssl-dev libuchardet-dev
sudo apt install libfmt-dev libspdlog-dev
;;
windows)
[[ ! -f C:/tools/msys64/msys2_shell.cmd ]] && rm -rf C:/tools/msys64
choco uninstall -y mingw
choco upgrade --no-progress -y msys2
export msys2='cmd //C RefreshEnv.cmd '
export msys2+='& set MSYS=winsymlinks:nativestrict '
export msys2+='& C:\\tools\\msys64\\msys2_shell.cmd -defterm -no-start'
export mingw64="$msys2 -mingw64 -full-path -here -c "\"\$@"\" --"
export msys2+=" -msys2 -c "\"\$@"\" --"
$msys2 pacman --sync --noconfirm --needed mingw-w64-x86_64-toolchain
## Install more MSYS2 packages from https://packages.msys2.org/base here
$msys2 pacman --sync --noconfirm --needed mingw-w64-x86_64-cmake
$msys2 pacman --sync --noconfirm --needed mingw-w64-x86_64-gtkmm3
$msys2 pacman --sync --noconfirm --needed mingw-w64-x86_64-gtksourceviewmm3
$msys2 pacman --sync --noconfirm --needed mingw-w64-x86_64-libxml++2.6
$msys2 pacman --sync --noconfirm --needed mingw-w64-x86_64-sqlite3
$msys2 pacman --sync --noconfirm --needed mingw-w64-x86_64-gspell
$msys2 pacman --sync --noconfirm --needed mingw-w64-x86_64-curl
$msys2 pacman --sync --noconfirm --needed mingw-w64-x86_64-uchardet
$msys2 pacman --sync --noconfirm --needed mingw-w64-x86_64-fmt
$msys2 pacman --sync --noconfirm --needed mingw-w64-x86_64-spdlog
taskkill //IM gpg-agent.exe //F # https://travis-ci.community/t/4967
export PATH=/C/tools/msys64/mingw64/bin:$PATH
export MAKE=mingw32-make # so that Autotools can find it
;;
esac
script:
- |-
case $TRAVIS_OS_NAME in
linux)
cd ${TRAVIS_BUILD_DIR}
xvfb-run ./build.sh Release
;;
windows)
cd ${TRAVIS_BUILD_DIR}
$mingw64 ./build.sh Release
;;
osx)
cd ${TRAVIS_BUILD_DIR}
mkdir build && cd build
cmake ../
make -j$(sysctl -n hw.ncpu)
;;
esac
此处可能存在不合适展示的内容,页面不予展示。您可通过相关编辑功能自查并修改。
如您确认内容无涉及 不当用语 / 纯广告导流 / 暴力 / 低俗色情 / 侵权 / 盗版 / 虚假 / 无价值内容或违法国家有关法律法规的内容,可点击提交进行申诉,我们将尽快为您处理。