File tree Expand file tree Collapse file tree 5 files changed +9
-8
lines changed
Expand file tree Collapse file tree 5 files changed +9
-8
lines changed Original file line number Diff line number Diff line change @@ -32,7 +32,7 @@ aliases:
3232 if [ $CIRCLE_BRANCH == "master" ]; then bash ./ci-support/conda_upload.sh ; fi
3333 if [ $CIRCLE_BRANCH != "master" ]; then
3434 export LABEL="unstable";
35- conda install -n root "conda-build<3.10 " anaconda-client;
35+ conda install -n root "conda-build" anaconda-client;
3636 bash ./ci-support/conda_upload.sh;
3737 fi
3838
Original file line number Diff line number Diff line change @@ -7,10 +7,11 @@ echo ""
77echo " Activating base env"
88source activate base
99echo " Making sure conda-build is installed"
10- conda install " conda-build<3.10 "
10+ conda install " conda-build"
1111echo " Updating conda"
1212conda update -y -q conda
1313
14+
1415if [ ` uname` == " Linux" ]; then
1516 OS=linux-64
1617 echo " Linux OS"
@@ -30,5 +31,5 @@ rm -rf uvcdat
3031export BRANCH=${CIRCLE_BRANCH}
3132python ./prep_for_build.py -b ${BRANCH}
3233
33- conda build ${PKG_NAME} -c cdat/label/unstable -c conda-forge
34+ conda build ${PKG_NAME} -c cdat/label/nightly -c cdat/label/ unstable -c conda-forge
3435anaconda -t $CONDA_UPLOAD_TOKEN upload -u $USER -l $LABEL $CONDA_BLD_PATH /$OS /${PKG_NAME} -$VERSION .` date +%Y* ` 0.tar.bz2 --force
Original file line number Diff line number Diff line change @@ -51,10 +51,10 @@ VPATH=@srcdir@
5151CC = @CC@
5252ARCH =$(shell uname -m)
5353ifeq ($(ARCH ) ,ia64)
54- CC = gcc -fPIC -D__ia64
54+ CC = @CC@ -fPIC -D__ia64
5555endif
5656ifeq ($(ARCH ) ,x86_64)
57- CC = gcc -fPIC -D__x86_64__
57+ CC = @CC@ -fPIC -D__x86_64__
5858endif
5959CFLAGS = -I@srcdir@/../../include @CFLAGS@ $(DEBUG ) -Dgrads -I@NCINC@
6060CPPFLAGS = @CPPFLAGS@ -DSTNDALN=1 -DBYTEORDER=@GRADS_BYTEORDER@ -DGRADS_CRAY=@GRADS_CRAY@
Original file line number Diff line number Diff line change @@ -43,10 +43,10 @@ VPATH=@srcdir@
4343CC = @CC@
4444ARCH =$(shell uname -m)
4545ifeq ($(ARCH ) ,ia64)
46- CC = gcc -fPIC -D__ia64
46+ CC = @CC@ -fPIC -D__ia64
4747endif
4848ifeq ($(ARCH ) ,x86_64)
49- CC = gcc -fPIC -D__x86_64__
49+ CC = @CC@ -fPIC -D__x86_64__
5050endif
5151CFLAGS = -I@srcdir@/../../include -I@NCINC@ -I@HDFINC@ -I@DRSINC@ @CFLAGS@ $(DEBUG ) -Dgrads
5252CPPFLAGS = @CPPFLAGS@
Original file line number Diff line number Diff line change @@ -51,7 +51,7 @@ VPATH=@srcdir@
5151# Set the compiler flag for the 64-bit Opteron platform
5252ARCH =$(shell uname -m)
5353ifeq ($(ARCH ) ,x86_64)
54- CC = gcc -fPIC -D__x86_64__
54+ CC = @CC@ -fPIC -D__x86_64__
5555else
5656 CC = @CC@
5757endif
You can’t perform that action at this time.
0 commit comments