commit
3cd9903971
|
@ -133,6 +133,7 @@ jobs:
|
||||||
topsApp.py --help --steps
|
topsApp.py --help --steps
|
||||||
stripmapApp.py --help --steps
|
stripmapApp.py --help --steps
|
||||||
python3 -c "import isce"
|
python3 -c "import isce"
|
||||||
|
python3 -c "import isce; from isceobj.Sensor import SENSORS as s; [s[k]() for k in s]"
|
||||||
build:
|
build:
|
||||||
docker:
|
docker:
|
||||||
- image: docker:stable-git
|
- image: docker:stable-git
|
||||||
|
@ -169,9 +170,8 @@ jobs:
|
||||||
name: Install dependencies
|
name: Install dependencies
|
||||||
command: |
|
command: |
|
||||||
apk add --no-cache \
|
apk add --no-cache \
|
||||||
python3-dev py3-pip bash pigz build-base libffi-dev openssl-dev
|
python3-dev py3-pip bash pigz build-base libffi-dev openssl-dev \
|
||||||
pip install \
|
docker-compose aws-cli
|
||||||
docker-compose awscli
|
|
||||||
- run:
|
- run:
|
||||||
name: Build docker image
|
name: Build docker image
|
||||||
command: |
|
command: |
|
||||||
|
@ -195,9 +195,8 @@ jobs:
|
||||||
name: Install dependencies
|
name: Install dependencies
|
||||||
command: |
|
command: |
|
||||||
apk add --no-cache \
|
apk add --no-cache \
|
||||||
python3-dev py3-pip bash pigz build-base libffi-dev openssl-dev
|
python3-dev py3-pip bash pigz build-base libffi-dev openssl-dev \
|
||||||
pip install \
|
docker-compose aws-cli
|
||||||
docker-compose awscli
|
|
||||||
- run:
|
- run:
|
||||||
name: Build docker image
|
name: Build docker image
|
||||||
command: |
|
command: |
|
||||||
|
|
|
@ -13,7 +13,8 @@ libList2 = ['cosar','DataAccessor','InterleavedAccessor']
|
||||||
envSensor1.PrependUnique(LIBS = libList1)
|
envSensor1.PrependUnique(LIBS = libList1)
|
||||||
envSensor2.PrependUnique(LIBS = libList2)
|
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)
|
envSensor1.Install(install,alosmodule)
|
||||||
|
|
||||||
cosarmodule = envSensor2.LoadableModule(target = 'cosar.abi3.so', source = 'cosarmodule.cpp')
|
cosarmodule = envSensor2.LoadableModule(target = 'cosar.abi3.so', source = 'cosarmodule.cpp')
|
||||||
|
|
Loading…
Reference in New Issue