Changeset f4a1433 in sasview for build_tools
- Timestamp:
- Oct 24, 2017 2:44:26 AM (7 years ago)
- Branches:
- ESS_GUI, ESS_GUI_Docs, ESS_GUI_batch_fitting, ESS_GUI_bumps_abstraction, ESS_GUI_iss1116, ESS_GUI_iss879, ESS_GUI_iss959, ESS_GUI_opencl, ESS_GUI_ordering, ESS_GUI_sync_sascalc
- Children:
- fca1f50, d6b234b
- Parents:
- 16afe01 (diff), 5582b078 (diff)
Note: this is a merge changeset, the changes displayed below correspond to the merge itself.
Use the (diff) links above to see all the changes relative to each parent. - Location:
- build_tools
- Files:
-
- 10 added
- 9 edited
Legend:
- Unmodified
- Added
- Removed
-
build_tools/conda/periodictable/meta.yaml
r55bde35 r36ca21e 1 1 package: 2 2 name: periodictable 3 version: !!str 1. 4.13 version: !!str 1.5.0 4 4 5 5 source: 6 fn: periodictable-1. 4.1.tar.gz7 url: https://pypi.python.org/packages/source/p/periodictable/periodictable-1. 4.1.tar.gz8 md5: 7246b63cc0b6b1be6e86b6616f9e866e6 fn: periodictable-1.5.0.tar.gz 7 url: https://pypi.python.org/packages/source/p/periodictable/periodictable-1.5.0.tar.gz 8 md5: f7e0d8199b0fe829868d24a0a734398e 9 9 # patches: 10 10 # List any patch files here -
build_tools/deploy.bat
r661bd79 r2f6d340 3 3 4 4 rem Copy new installer to the temp directory on the test server 5 pscp -scp -v -i sasview.ppk C:\jenkins\workspace\SasView_Win7\sasview\ sasview\Output\setupSasView.exe sasview@192.168.1.18:AppData\Local\Temp\5 pscp -scp -v -i sasview.ppk C:\jenkins\workspace\SasView_Win7\sasview\installers\Output\setupSasView.exe sasview@192.168.1.18:AppData\Local\Temp\ 6 6 rem Execute the test on the remote server 7 7 plink -i sasview.ppk -ssh sasview@192.168.1.18 c:\\jenkins\\test_deployment.bat -
build_tools/jenkins_linux_build.sh
r128c287 r724af06 14 14 # SET SASVIEW GITHASH 15 15 cd $WORKSPACE 16 cd sasview/s asview16 cd sasview/src/sas/sasview 17 17 githash=$( git rev-parse HEAD ) 18 18 sed -i.bak s/GIT_COMMIT/$githash/g __init__.py … … 63 63 $PYTHON setup.py build docs bdist_egg 64 64 65 # CREATE PDF FROM LATEX 66 #cd $WORKSPACE 67 #cd sasview/docs/sphinx-docs/build/latex 68 #pdflatex SasView.tex 65 69 66 70 # INSTALL SASVIEW … … 81 85 #cd sasview 82 86 #$PYLINT --rcfile "build_tools/pylint.rc" -f parseable sasview-install/sasview*.egg/sas sasview | tee test/sasview.txt 83 84 -
build_tools/jenkins_osx_build.sh
rb742b8b5 r2f6d340 17 17 # SET SASVIEW GITHASH 18 18 cd $WORKSPACE 19 cd sasview/s asview19 cd sasview/src/sas/sasview 20 20 githash=$( git rev-parse HEAD ) 21 21 sed -i.bak s/GIT_COMMIT/$githash/g __init__.py … … 88 88 # BUILD APP 89 89 cd $WORKSPACE 90 cd sasview/ sasview90 cd sasview/installers 91 91 $PYTHON setup_mac.py py2app 92 92 -
build_tools/jenkins_rhel6_build.sh
r243fbc0 r36ca21e 29 29 "$EASY_INSTALL" -d "$WORKSPACE/utils" pyparsing==1.5.5 30 30 "$EASY_INSTALL" -d "$WORKSPACE/utils" bumps==0.7.5.9 31 "$EASY_INSTALL" -d "$WORKSPACE/utils" periodictable==1. 3.031 "$EASY_INSTALL" -d "$WORKSPACE/utils" periodictable==1.5.0 32 32 python deps.py 33 33 … … 44 44 # Build SasView ########################################################### 45 45 export PYTHONPATH=$PYTHONPATH:$WORKSPACE/$SASVIEW_INSTALL:$WORKSPACE/utils 46 python setup.py bdist_egg 46 python setup.py bdist_egg 47 47 48 48 -
build_tools/jenkins_win64_build.bat
rec57735 ra2a1c20 1 1 set PYTHON=python.exe 2 2 set EASY_INSTALL=easy_install.exe 3 set PYLINT= 3 set PYLINT=pylint.exe 4 4 set INNO="C:\util\inno\ISCC.exe" 5 5 set GIT_SED=C:\"Program Files"\Git\bin\sed.exe … … 15 15 :: SET SASVIEW GITHASH ################################################ 16 16 cd %WORKSPACE% 17 cd sasview\s asview17 cd sasview\src\sas\sasview 18 18 git rev-parse HEAD > tmpFile_githash 19 19 SET /p githash= < tmpFile_githash … … 81 81 cd %WORKSPACE% 82 82 cd sasview 83 cd sasview83 cd installers 84 84 %PYTHON% setup_exe.py py2exe 85 85 %PYTHON% installer_generator.py -
build_tools/jenkins_win_build.bat
r5dab2bc r2f6d340 17 17 :: SET SASVIEW GITHASH ################################################ 18 18 cd %WORKSPACE% 19 cd sasview\s asview19 cd sasview\src\sas\sasview 20 20 git rev-parse HEAD > tmpFile_githash 21 21 SET /p githash= < tmpFile_githash … … 89 89 cd %WORKSPACE% 90 90 cd sasview 91 cd sasview91 cd installers 92 92 %PYTHON% setup_exe.py py2exe 93 93 %PYTHON% installer_generator.py -
build_tools/requirements.txt
r131d94b r36ca21e 8 8 lxml==2.3 9 9 #PIL==1.1.7 10 periodictable==1. 3.010 periodictable==1.5.0 11 11 bumps==0.7.5.9 12 12 numpy>=1.7.1 -
build_tools/travis_build.sh
r8374dc0 r2f6d340 10 10 11 11 # SET SASVIEW GITHASH 12 cd $WORKSPACE/sasview/s asview12 cd $WORKSPACE/sasview/src/sas/sasview 13 13 githash=$( git rev-parse HEAD ) 14 14 sed -i.bak s/GIT_COMMIT/$githash/g __init__.py
Note: See TracChangeset
for help on using the changeset viewer.