1 Star 0 Fork 15

zeng11/perl

forked from openKylin/perl 
加入 Gitee
与超过 1200万 开发者一起发现、参与优秀开源项目,私有仓库也完全免费 :)
免费加入
文件
克隆/下载
.travis.yml 2.08 KB
一键复制 编辑 原始数据 按行查看 历史
xinjiahao 提交于 2024-03-10 12:24 . New upstream version 5.36.0
language: c
cache: ccache
os:
- linux
compiler:
- gcc
install:
- git fetch --unshallow --tags # t/porting/cmp_version.t
# install & enable ccache on osx
- if [[ "$TRAVIS_OS_NAME" == "osx" ]]; then brew update && brew install ccache; fi
- if [[ "$TRAVIS_OS_NAME" == "osx" ]]; then export PATH="/usr/local/opt/ccache/libexec:$PATH"; fi
env:
global:
- JOBS=4
matrix:
# exercise a variety of build options
# threads often cause build issues
- CONFIGURE_ARGS='-Uusethreads'
- CONFIGURE_ARGS='-Dusethreads'
# check long doubles
- CONFIGURE_ARGS='-Duseshrplib -Dusesitecustomize -Duselongdouble'
# exercise quadmath
- CONFIGURE_ARGS='-Duseshrplib -Dusequadmath -Dusecbacktrace -Dusethreads'
matrix:
fast_finish: true
script:
- ./Configure -des -Dusedevel -Uversiononly -Dcc="ccache $CC" $CONFIGURE_ARGS -Dprefix=$HOME/perl-blead -DDEBUGGING
# all script commands are always run
# rather than using one very long oneliner using '&&', just always check the build status
- if [ "x$TRAVIS_TEST_RESULT" = "x0" ]; then TEST_JOBS=$JOBS make -j$JOBS test_harness_notty; fi
- if [ "x$TRAVIS_TEST_RESULT" = "x0" ]; then make -j$JOBS install; fi
- if [ "x$TRAVIS_TEST_RESULT" = "x0" ]; then $HOME/perl-blead/bin/perlivp; fi
addons:
apt:
packages:
- file
- cpio
- libdb-dev
- libgdbm-dev
- zlib1g-dev
- libbz2-dev
notifications:
## use dedicated email for smoking ?
# email:
# recipients:
# - perl5-porters@perl.org
# on_success: never # default: change
# on_failure: always # default: always
irc:
nick: travisci
channels:
- "irc.perl.org#p5p-qa"
# - "irc.perl.org#bot-test"
template:
- "Report for %{repository} (%{commit}) from %{author} (%{elapsed_time})"
- "Status: %{message}"
- "Build URL: %{build_url}"
- "GitHub URL: https://github.com/%{repository_slug}/commit/%{commit}"
on_success: change # default: always
on_failure: always # default: always
# use_notice: true
Loading...
马建仓 AI 助手
尝试更多
代码解读
代码找茬
代码优化
1
https://gitee.com/zeng-jiahao1322/perl.git
git@gitee.com:zeng-jiahao1322/perl.git
zeng-jiahao1322
perl
perl
upstream

搜索帮助