-
-
Notifications
You must be signed in to change notification settings - Fork 96
69 lines (64 loc) · 2.03 KB
/
macos.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
# This workflow will install Python dependencies, run tests and lint with a single version of Python
# For more information see: https://help.github.com/actions/language-and-framework-guides/using-python-with-github-actions
name: MacOS tests
on:
push:
branches: [ "pygmtsar" ]
pull_request:
branches: [ "pygmtsar" ]
permissions:
contents: read
jobs:
S1A_Stack_CPGF_T173:
strategy:
fail-fast: false
matrix:
os: [macos-12, macos-13]
python-version: ["3.11"]
runs-on: ${{ matrix.os }}
steps:
- uses: actions/checkout@v3
- name: Set up Python ${{ matrix.python-version }}
uses: actions/setup-python@v4
with:
python-version: ${{ matrix.python-version }}
- name: Install system dependencies
run: |
uname -a
# prepare system
brew install wget libtiff hdf5 gmt ghostscript autoconf
- name: Compile GMTSAR
run: |
git clone --branch master https://github.com/gmtsar/gmtsar GMTSAR
cd GMTSAR
autoconf
./configure --with-orbits-dir=/tmp
make
make install
# check installation
export PATH=$PATH:/Users/runner/work/gmtsar/gmtsar/GMTSAR/bin
echo "Start gmtsar_sharedir.csh"
gmtsar_sharedir.csh
- name: Install PyGMTSAR
run: |
# upgrade package to resolve dependencies
pip3 install click --upgrade
pip3 install matplotlib seaborn
pip3 install -e ./pygmtsar/
- name: Cache dataset
uses: actions/cache@v3
with:
path: tests/S1A_Stack_CPGF_T173.tar.gz
key: S1A_Stack_CPGF_T173.tar.gz
restore-keys: S1A_Stack_CPGF_T173
- name: Run test
working-directory: tests
run: |
export PATH=$PATH:/Users/runner/work/gmtsar/gmtsar/GMTSAR/bin
sh ./S1A_Stack_CPGF_T173.sh
- name: Archive test results
uses: actions/upload-artifact@v3
with:
name: Plots (${{ matrix.os }}, ${{ matrix.python-version }})
path: tests/*.jpg
if-no-files-found: error