Skip to content

Commit 287f195

Browse files
authored
Merge pull request #54 from tpaviot/review/prepare-676
prepare smesh-6.7.6
2 parents c76188d + 46ab8ff commit 287f195

File tree

5 files changed

+30
-15
lines changed

5 files changed

+30
-15
lines changed

.travis.yml

Lines changed: 15 additions & 9 deletions
Original file line numberDiff line numberDiff line change
@@ -3,14 +3,18 @@ language: cpp
33
cache:
44
apt: true
55

6+
env:
7+
global:
8+
secure: "QNmikTCQbLuClaVFWUI+PTDBTZfcJyXgYnfbPe3WWHGf7Cm1oX+2J31duoGOHMOESNXElg2wXdT9Qby3EFRGyrAMCflJc6m3iQY703F+7vfG6hL2Sn7xKfyDQgk5gkNtORdpwyjgiMdieNu6GvzTvXjwgzcUvAvqxsTPc+erF10="
9+
610
matrix:
711
include:
812
- os: linux
913
compiler: gcc
10-
env: MATRIX_EVAL="CC=gcc && CXX=g++"
14+
env: MATRIX_EVAL="CC=gcc && CXX=g++" CONDA_UPLOAD="ON"
1115
- os: linux
1216
compiler: gcc
13-
env: MATRIX_EVAL="CC=gcc-5 && CXX=g++-5"
17+
env: MATRIX_EVAL="CC=gcc-5 && CXX=g++-5" CONDA_UPLOAD="OFF"
1418
addons:
1519
apt:
1620
sources:
@@ -19,7 +23,7 @@ matrix:
1923
- g++-5
2024
- os: linux
2125
compiler: gcc
22-
env: MATRIX_EVAL="CC=gcc-6 && CXX=g++-6"
26+
env: MATRIX_EVAL="CC=gcc-6 && CXX=g++-6" CONDA_UPLOAD="OFF"
2327
addons:
2428
apt:
2529
sources:
@@ -28,7 +32,7 @@ matrix:
2832
- g++-6
2933
- os: linux
3034
compiler: gcc
31-
env: MATRIX_EVAL="CC=gcc-7 && CXX=g++-7"
35+
env: MATRIX_EVAL="CC=gcc-7 && CXX=g++-7" CONDA_UPLOAD="OFF"
3236
addons:
3337
apt:
3438
sources:
@@ -37,14 +41,14 @@ matrix:
3741
- g++-7
3842
- os: linux
3943
compiler: clang
40-
env: MATRIX_EVAL="CC=clang-4.0 && CXX=clang++-4.0"
44+
env: MATRIX_EVAL="CC=clang-4.0 && CXX=clang++-4.0" CONDA_UPLOAD="OFF"
4145
addons:
4246
apt:
4347
sources:
4448
- llvm-toolchain-trusty-4.0
4549
packages:
4650
- clang-4.0
47-
- env: ARCH="x86_64" MACOSX_DEPLOYMENT_TARGET="10.9"
51+
- env: ARCH="x86_64" MACOSX_DEPLOYMENT_TARGET="10.9" CONDA_UPLOAD="ON"
4852
os: osx
4953
osx_image: xcode8.3
5054

@@ -78,11 +82,13 @@ before_install:
7882
- conda config --add channels https://conda.anaconda.org/oce
7983

8084
script:
81-
- conda build ci/conda --dirty --no-remove-work-dir
85+
- conda build ci/conda --dirty --no-remove-work-dir
8286

8387
after_success:
84-
- python ci/move-conda-package.py
85-
- anaconda -t $BINSTAR_TOKEN upload *.bz2 --force;
88+
- if [[ "$CONDA_UPLOAD" == "ON" ]]; then
89+
python ci/move-conda-package.py;
90+
anaconda -t $BINSTAR_TOKEN upload *.bz2 --force;
91+
fi
8692

8793
branches:
8894
only:

CMakeLists.txt

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@ cmake_minimum_required(VERSION 2.8)
55
set(SMESH_VERSION_MAJOR 6)
66
set(SMESH_VERSION_MINOR 7)
77
set(SMESH_VERSION_PATCH 6)
8-
set(SMESH_VERSION_TWEAK -dev)
8+
set(SMESH_VERSION_TWEAK)
99

1010

1111
#####################

NEWS

Lines changed: 11 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,14 @@
1+
Version 6.7.6 - February 2018
2+
=============================
3+
This version is binary compatible with smesh-6.7.3, smesh-6.7.4 and smesh-6.7.5
4+
5+
* [clang-error-fix] ordered comparison between pointer and zero
6+
7+
* improved ci travis/appveyor
8+
9+
Users who contributed to this release:
10+
Thomas Paviot
11+
112
Version 6.7.5 - August 2017
213
===========================
314
This version is binary compatible with smesh-6.7.3 and smesh-6.7.4

README.md

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -37,20 +37,20 @@ How to stay up to date with latest developements?
3737
Install with conda
3838
------------------
3939

40-
$ conda install -c pythonocc -c dlr-sc -c oce smesh=6.7.4
40+
$ conda install -c pythonocc -c dlr-sc -c oce smesh=6.7.6
4141

4242
Build - Install
4343
---------------
4444

45-
For both OSX, Linux and Windows (please use Mingw on Windows), the instructions are the same.
45+
For both OSX, Linux and Windows, the instructions are the same.
4646

4747
Requirements
4848
------------
4949
* a c++ and a fortran compiler
5050

5151
* cmake 2.8 or higher
5252

53-
* oce 0.18 or oce-0.18.1
53+
* oce 0.18.x
5454

5555
Build
5656
-----

appveyor.yml

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -11,8 +11,6 @@ environment:
1111
PYTHONIOENCODING: "UTF-8"
1212

1313
matrix:
14-
# Note: Because we have to separate the py2 and py3 components due to compiler version, we have a race condition for non-python packages.
15-
# Not sure how to resolve this, but maybe we should be tracking the VS version in the build string anyway?
1614
- TARGET_ARCH: "x86"
1715
ARCH: "32"
1816
CONDA_PY: "27"

0 commit comments

Comments
 (0)