source: flex_extract.git/Testing/Regression/Unit/InstallTar/mk_install_tar.sh @ 8028176

ctbtodev
Last change on this file since 8028176 was 8028176, checked in by Anne Philipp <anne.philipp@…>, 4 years ago

updated unit tests

  • Property mode set to 100755
File size: 2.0 KB
Line 
1#!/bin/bash
2#
3# @Author: Anne Philipp
4#
5# @Date: November, 10 2018
6#
7# @Description: Makes a tar-ball for installation
8#
9
10# path to flex_extract base directory
11path=../../
12
13tarname='flex_extract_v7.1.2_local.tar'
14pwd
15tar -zcvf ../../Testing/Regression/Unit/InstallTar/$tarname  \
16        ${path}Source/Python/Classes/*py \
17        ${path}Source/Python/Mods/*py \
18        ${path}Source/Python/*py \
19        ${path}Source/Pythontest/*py \
20        ${path}Source/Fortran/*.f90 \
21        ${path}Source/Fortran/*.h \
22        ${path}Source/Fortran/makefile* \
23        ${path}Templates/* \
24        ${path}Run/run_local.sh \
25        ${path}Run/Control/CONTROL* \
26        ${path}Run/Jobscripts/*.md \
27        ${path}*.md \
28        ${path}Testing/Installation/*.sh \
29        ${path}Testing/Installation/Api_testscripts/* \
30        ${path}Testing/Installation/Calc_etadot/* \
31        ${path}Testing/Installation/First_extraction/* \
32        --exclude=*.ksh  \
33        --exclude=flex_extract_v7.1_*.tar
34                 
35                 
36                 
37tarname='flex_extract_v7.1.2_ecgate.tar'
38
39tar -zcvf ../../Testing/Regression/Unit/InstallTar/$tarname \
40        ${path}Source/Python/Classes/*py \
41        ${path}Source/Python/Mods/*py \
42        ${path}Source/Python/*py \
43        ${path}Source/Pythontest/*py \
44        ${path}Source/Fortran/*.f90 \
45        ${path}Source/Fortran/*.h \
46        ${path}Source/Fortran/makefile* \
47        ${path}Templates/* \
48        ${path}Run/ECMWF_ENV \
49        ${path}Run/run.sh \
50        ${path}Run/Control/CONTROL* \
51        ${path}Run/Jobscripts/*.md \
52        ${path}LICENSE.md \
53        ${path}CODE_OF_CONDUCT.md \
54        ${path}README.md \
55        ${path}Testing/Installation/*.sh \
56        ${path}Testing/Installation/Api_testscripts/* \
57        ${path}Testing/Installation/Calc_etadot/* \
58        ${path}Testing/Installation/First_extraction/* \
59        --exclude=*.ksh  \
60        --exclude=flex_extract_v7.1_*.tar
61                 
62                 
63                 
64                 
65                 
66                 
Note: See TracBrowser for help on using the repository browser.
hosted by ZAMG