mirror of
https://github.com/jarun/nnn.git
synced 2024-12-01 02:49:44 +00:00
Bring back plain builds (#30)
* Bring back plain builds * Bring back plain builds * Bring back plain builds * Bring back plain builds
This commit is contained in:
parent
7727b745ed
commit
c61f950f28
48
.travis.yml
48
.travis.yml
|
@ -1,21 +1,47 @@
|
||||||
language: c
|
language: c
|
||||||
sudo: required
|
sudo: required
|
||||||
env:
|
matrix:
|
||||||
matrix:
|
include:
|
||||||
- OS_TYPE=centos OS_VERSION=7
|
# Access more recent gcc and clang via a Trusty image
|
||||||
- OS_TYPE=fedora OS_VERSION=24
|
- os: linux
|
||||||
services:
|
dist: trusty
|
||||||
- docker
|
compiler: gcc
|
||||||
|
- os: linux
|
||||||
|
dist: trusty
|
||||||
|
compiler: clang
|
||||||
|
- os: osx
|
||||||
|
compiler: gcc
|
||||||
|
- os: osx
|
||||||
|
compiler: clang
|
||||||
|
- os: linux
|
||||||
|
dist: trusty
|
||||||
|
env: USE_DOCKER=1 OS_TYPE=centos OS_VERSION=7
|
||||||
|
- os: linux
|
||||||
|
dist: trusty
|
||||||
|
env: USE_DOCKER=1 OS_TYPE=fedora OS_VERSION=24
|
||||||
|
|
||||||
before_install:
|
before_install:
|
||||||
- sudo docker pull $OS_TYPE:$OS_VERSION
|
- if [ "$USE_DOCKER" = "1" ]; then
|
||||||
|
sudo systemctl start docker.service;
|
||||||
|
sudo docker pull $OS_TYPE:$OS_VERSION;
|
||||||
|
fi
|
||||||
|
|
||||||
script:
|
script:
|
||||||
- ./build-docker $OS_TYPE $OS_VERSION
|
- if [ "$USE_DOCKER" = "1" ]; then
|
||||||
- sudo chown -R $(id -un).$(id -gn) dist
|
./build-docker $OS_TYPE $OS_VERSION;
|
||||||
|
sudo chown -R $(id -un).$(id -gn) dist;
|
||||||
|
else
|
||||||
|
export CFLAGS=-Werror;
|
||||||
|
make clean;
|
||||||
|
make;
|
||||||
|
make clean;
|
||||||
|
make -f Makefile.native;
|
||||||
|
fi
|
||||||
|
|
||||||
after_success:
|
after_success:
|
||||||
- ls -l dist
|
- if [ "$USE_DOCKER" = "1" ]; then
|
||||||
|
ls -l dist;
|
||||||
|
fi
|
||||||
|
|
||||||
deploy:
|
deploy:
|
||||||
skip_cleanup: true
|
skip_cleanup: true
|
||||||
|
@ -27,6 +53,8 @@ deploy:
|
||||||
- dist/*.deb
|
- dist/*.deb
|
||||||
- dist/*.rpm
|
- dist/*.rpm
|
||||||
on:
|
on:
|
||||||
|
condition: $USE_DOCKER = 1
|
||||||
repo: jarun/nnn
|
repo: jarun/nnn
|
||||||
tags: true
|
tags: true
|
||||||
|
|
||||||
tags: true
|
tags: true
|
||||||
|
|
Loading…
Reference in a new issue