My build of nnn with minor changes
Vous ne pouvez pas sélectionner plus de 25 sujets
Les noms de sujets doivent commencer par une lettre ou un nombre, peuvent contenir des tirets ('-') et peuvent comporter jusqu'à 35 caractères.
|
- version: 2
-
- jobs:
- compile:
- docker:
- - image: ubuntu:18.04
- working_directory: ~/nnn
- environment:
- CI_FORCE_TEST: 1
- steps:
- - run:
- command: |
- apt update -qq
- apt install -y --no-install-recommends software-properties-common wget gpg-agent
- apt-add-repository -y ppa:jonathonf/gcc-9.0
- wget -O - https://apt.llvm.org/llvm-snapshot.gpg.key|apt-key add -
- apt-add-repository -y "deb http://apt.llvm.org/bionic/ llvm-toolchain-bionic-8 main"
- apt update -qq
- apt install -y --no-install-recommends git gcc gcc-8 gcc-9 clang clang-8 clang-tidy-8 make pkg-config libncursesw5-dev libreadline-dev
- - checkout
- - run:
- command: |
- export CFLAGS=-Werror
- make clean
- echo
- echo "########## gcc ##########"
- CC=gcc make strip
- ls -l nnn
- make clean
- echo
- echo "########## gcc-8 ##########"
- CC=gcc-8 make strip
- ls -l nnn
- make clean
- echo
- echo "########## gcc-9 ##########"
- CC=gcc-9 make strip
- ls -l nnn
- make clean
- echo
- echo "########## clang ##########"
- CC=clang make strip
- ls -l nnn
- make clean
- echo
- echo "########## clang-8 ##########"
- CC=clang-8 make strip
- ls -l nnn
- make clean
- echo
- echo "########## clang-tidy-8 ##########"
- clang-tidy-8 src/* -- -I/usr/include -I/usr/include/ncursesw
-
- package-and-publish:
- machine: true
- working_directory: ~/nnn
- steps:
- - checkout
- - run:
- name: "package with packagecore"
- command: |
- # Use latest installed python3 from pyenv
- export PYENV_VERSION="$(pyenv versions | grep -Po '\b3\.\d+\.\d+' | tail -1)"
- pip install packagecore
- packagecore -o ./dist/ ${CIRCLE_TAG#v}
- - run:
- name: "publish to GitHub"
- command: |
- go get github.com/tcnksm/ghr
- ghr -t ${GITHUB_API_TOKEN} -u ${CIRCLE_PROJECT_USERNAME} -r ${CIRCLE_PROJECT_REPONAME} -c ${CIRCLE_SHA1} -replace ${CIRCLE_TAG} ./dist/
-
- workflows:
- version: 2
-
- test:
- jobs: &all-tests
- - compile
-
- nightly:
- triggers:
- - schedule:
- cron: "0 0 * * 6"
- filters:
- branches:
- only:
- - master
- jobs: *all-tests
-
- publish-github-release:
- jobs:
- - package-and-publish:
- filters:
- tags:
- only: /^v.*/
- branches:
- ignore: /.*/
|