Merge pull request #248 from rtburns-jpl/alos-fix

Fix alos bindings
LT1AB
Ryan Burns 2021-03-05 11:24:31 -08:00 committed by GitHub
commit 3cd9903971
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
2 changed files with 7 additions and 7 deletions

View File

@ -133,6 +133,7 @@ jobs:
topsApp.py --help --steps
stripmapApp.py --help --steps
python3 -c "import isce"
python3 -c "import isce; from isceobj.Sensor import SENSORS as s; [s[k]() for k in s]"
build:
docker:
- image: docker:stable-git
@ -169,9 +170,8 @@ jobs:
name: Install dependencies
command: |
apk add --no-cache \
python3-dev py3-pip bash pigz build-base libffi-dev openssl-dev
pip install \
docker-compose awscli
python3-dev py3-pip bash pigz build-base libffi-dev openssl-dev \
docker-compose aws-cli
- run:
name: Build docker image
command: |
@ -195,9 +195,8 @@ jobs:
name: Install dependencies
command: |
apk add --no-cache \
python3-dev py3-pip bash pigz build-base libffi-dev openssl-dev
pip install \
docker-compose awscli
python3-dev py3-pip bash pigz build-base libffi-dev openssl-dev \
docker-compose aws-cli
- run:
name: Build docker image
command: |

View File

@ -13,7 +13,8 @@ libList2 = ['cosar','DataAccessor','InterleavedAccessor']
envSensor1.PrependUnique(LIBS = libList1)
envSensor2.PrependUnique(LIBS = libList2)
alosmodule = envSensor1.LoadableModule(target = 'alos.abi3.so', source = 'alosmodule.cpp')
alosmodule = envSensor1.LoadableModule(target = 'alos.abi3.so',
source = [ 'alosmodule.cpp', '../src/ALOS_pre_process/image_sio.c' ])
envSensor1.Install(install,alosmodule)
cosarmodule = envSensor2.LoadableModule(target = 'cosar.abi3.so', source = 'cosarmodule.cpp')