upx/.circle.yml
2016-09-29 00:37:11 +02:00

33 lines
670 B
YAML

# Support for Circle CI -- https://circleci.com/gh/upx/upx
# Copyright (C) Markus Franz Xaver Johannes Oberhumer
branches:
only:
- circle
- devel
machine:
environment:
TRAVIS_OS_NAME: linux
C: gcc-4.8-m64
B: release
ALLOW_FAIL:
checkout:
post:
- git submodule update --init --recursive
dependencies:
pre:
- mkdir -p ../deps
- cd ../deps && wget -q -O - https://github.com/upx/upx/files/499379/ucl-1.03.tar.gz | tar -xz
- cd ../deps && git clone https://github.com/upx/upx-testsuite
override:
- bash ./.github/travis_build.sh
test:
override:
- bash ./.github/travis_testsuite_1.sh
# vim:set ts=2 sw=2 et: