Merge branch 'CI' into devel

This commit is contained in:
Ștefan Talpalaru 2019-10-17 00:43:43 +02:00
commit 9194f55375
No known key found for this signature in database
GPG Key ID: CBF7934204F1B6F9
2 changed files with 12 additions and 1 deletions

View File

@ -8,7 +8,7 @@ environment:
GIT_LFS_SKIP_SMUDGE: 1 GIT_LFS_SKIP_SMUDGE: 1
cache: cache:
- NimBinaries - NimBinaries -> .appveyor.yml
matrix: matrix:
# We always want 32-bit and 64-bit compilation # We always want 32-bit and 64-bit compilation
@ -21,6 +21,10 @@ platform:
# when multiple CI builds are queued, the tested commit needs to be in the last X commits cloned with "--depth X" # when multiple CI builds are queued, the tested commit needs to be in the last X commits cloned with "--depth X"
clone_depth: 10 clone_depth: 10
init:
# disable cache saving outside the master branch
- ps: IF ("$env:APPVEYOR_REPO_BRANCH" -ne "master") { $env:APPVEYOR_CACHE_SKIP_SAVE = "true" }
install: install:
- git submodule update --init --recursive - git submodule update --init --recursive
# use the newest versions documented here: https://www.appveyor.com/docs/windows-images-software/#mingw-msys-cygwin # use the newest versions documented here: https://www.appveyor.com/docs/windows-images-software/#mingw-msys-cygwin

View File

@ -15,9 +15,16 @@ git:
matrix: matrix:
include: include:
- os: linux - os: linux
arch: amd64
sudo: required sudo: required
before_install: before_install:
- export LD_LIBRARY_PATH="$LD_LIBRARY_PATH:/usr/local/lib" - export LD_LIBRARY_PATH="$LD_LIBRARY_PATH:/usr/local/lib"
- os: linux
arch: arm64
sudo: required
before_install:
- export LD_LIBRARY_PATH="$LD_LIBRARY_PATH:/usr/local/lib"
- sudo apt-get install -y libpcre3-dev
- os: osx - os: osx
before_install: before_install:
- launchctl setenv LIBRARY_PATH /usr/local/lib # for RocksDB - launchctl setenv LIBRARY_PATH /usr/local/lib # for RocksDB