-
Notifications
You must be signed in to change notification settings - Fork 3
95 lines (80 loc) · 3.31 KB
/
get_data.yml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
name: get_data
on:
push:
pull_request:
env:
BUILD_TYPE: Debug
jobs:
get_data:
runs-on: ubuntu-22.04
steps:
- uses: actions/checkout@v3
- name: "install packages"
run: |
sudo apt-get update
sudo apt install wget
- name: "check version and envs"
run: |
wget --version
- name: "check: get_l2b_smap_jpl.py"
if: false
run: |
cd ${{github.workspace}}/utils/obs_proc/level-2
pwd
PYTHONPATH=../../pycommon ./get_l2b_smap_jpl.py --start_date 20220101 --end_date 20220102 --outdir ./ --topdir_name test_l2_sss --skip_remote_check --verbose --log
ls -al
ls -al ./test_l2_sss/2022/202201/20220101/
rm -rf test_l2_sss
ls -al
- name: "check: get_l3_smap_jpl.py"
if: false
run: |
cd ${{github.workspace}}/utils/obs_proc/level-3
pwd
PYTHONPATH=../../pycommon ./get_l3_smap_jpl.py --start_date 20220101 --end_date 20220102 --outdir ./ --topdir_name test_l3_sss --skip_remote_check --verbose --log
ls -al
ls -al ./test_l3_sss/2022/202201/20220101/
rm -rf test_l3_sss
ls -al
- name: "check: get_l2p_ghrsst_geostationary.py"
if: false
run: |
cd ${{github.workspace}}/utils/obs_proc/level-2
pwd
PYTHONPATH=../../pycommon ./get_l2p_ghrsst_geostationary.py --start_date 20220110 --end_date 20220111 --sis ABI_G17 --outdir ./ --topdir_name test_l2p_sst --skip_remote_check --get_nav_file --verbose --log
ls -al
ls -al ./test_l2p_sst/ABI_G17/2022/202201/20220111/
ls -al ./test_l2p_sst/ABI_G17/nav
rm -rf test_l2p_sst
- name: "check: get_monthly_woa18.py"
run: |
cd ${{github.workspace}}/utils/obs_proc/woa
pwd
PYTHONPATH=../../pycommon ./get_monthly_woa18.py test_sal_woa18 --start_month 1 --end_month 2 --res 5 --dvar salinity --verbose
PYTHONPATH=../../pycommon ./get_monthly_woa18.py test_temp_woa18 --start_month 1 --end_month 2 --res 5 --dvar temperature --verbose
ls -al
ls -al ./test_sal_woa18
ls -al ./test_temp_woa18
- name: "check: get_l4_sss_esacci.py"
if: false
run: |
cd ${{github.workspace}}/utils/obs_proc/level-4
pwd
PYTHONPATH=../../pycommon ./get_l4_sss_esacci.py --topdir_name test_l4sss_esacci --start_date 20180101 --end_date 20180102 --log --verbose
ls -al
ls -al ./test_l4sss_esacci/2018/201801/20180102
- name: "check: get_l4_sst_ostia_v1.py"
if: false
run: |
cd ${{github.workspace}}/utils/obs_proc/level-4
pwd
PYTHONPATH=../../pycommon ./get_l4_sst_ostia_v1.py --topdir_name test_l4_sst_ostia_v1 --start_date 20180101 --end_date 20180102 --log --verbose
ls -al
ls -al ./test_l4_sst_ostia_v1/2018/201801/20180102
- name: "check: get_l4_sst_ostia_v2.py"
run: |
cd ${{github.workspace}}/utils/obs_proc/level-4
pwd
PYTHONPATH=../../pycommon ./get_l4_sst_ostia_v2.py --topdir_name test_l4_sst_ostia_v2 --start_date 20190101 --end_date 20190102 --log --verbose
ls -al
ls -al ./test_l4_sst_ostia_v2/2019/201901/20190102