Skip to content

Commit

Permalink
Remove setting of environment variables
Browse files Browse the repository at this point in the history
  • Loading branch information
kgryte committed Feb 1, 2017
1 parent 01b12b9 commit bbc27f7
Show file tree
Hide file tree
Showing 4 changed files with 4 additions and 6 deletions.
3 changes: 2 additions & 1 deletion .travis.yml
Original file line number Diff line number Diff line change
Expand Up @@ -89,6 +89,7 @@ before_install:

# Print debug info:
- echo "$($CC --version)"
- echo "$($CXX --version)"
- echo "$($FC --version)"

- git --version
Expand All @@ -106,7 +107,7 @@ before_install:


install:
- "make FC=$FC FORTRAN_COMPILER=$FORTRAN_COMPILER CC=$CC C_COMPILER=$C_COMPILER CXX=$CXX CXX_COMPILER=$CXX_COMPILER LINKER=$LINKER install"
- "make FC=$FC FORTRAN_COMPILER=$FORTRAN_COMPILER install"


script:
Expand Down
2 changes: 1 addition & 1 deletion appveyor.yml
Original file line number Diff line number Diff line change
Expand Up @@ -208,7 +208,7 @@ install:
- cmd: echo %PATH%

# Perform installation tasks:
- cmd: '%WIN_MAKE% FC=%FC% FORTRAN_COMPILER=%FORTRAN_COMPILER% CC=%CC% C_COMPILER=%C_COMPILER% CXX=%CXX% CXX_COMPILER=%CXX_COMPILER% NODE_GYP_FLAGS="--python %PYTHON% --msvs_version=2013" install'
- cmd: '%WIN_MAKE% FC=%FC% FORTRAN_COMPILER=%FORTRAN_COMPILER% NODE_GYP_FLAGS="--python %PYTHON% --msvs_version=2013" install'


build_script:
Expand Down
2 changes: 1 addition & 1 deletion tools/ci/circle/script
Original file line number Diff line number Diff line change
Expand Up @@ -161,7 +161,7 @@ clean_node() {
# $1 - log file
install() {
echo 'Installing...' >&2
make FC=gfortran FORTRAN_COMPILER=gfortran CC=gcc C_COMPILER=gcc CXX=g++ CXX_COMPILER=g++ LINKER=g++ install >> "$1" 2>&1
make FC=gfortran FORTRAN_COMPILER=gfortran install >> "$1" 2>&1
if [[ "$?" -ne 0 ]]; then
echo 'Error occurred during install.' >&2
return 1
Expand Down
3 changes: 0 additions & 3 deletions tools/make/lib/addons/Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -75,9 +75,6 @@ install-addons: clean-addons
echo "Building add-on: $$pkg"; \
cd $$pkg && \
FC=$(FC) \
CC=$(CC) \
CXX=$(CXX) \
LINK=$(LD) \
fPIC=$(fPIC) \
$(NODE_GYP) $(NODE_GYP_FLAGS) rebuild \
|| exit 1; \
Expand Down

0 comments on commit bbc27f7

Please sign in to comment.