-
-
Notifications
You must be signed in to change notification settings - Fork 11
51 lines (45 loc) · 1.41 KB
/
install-test-conda-forge.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
name: Install & test conda-forge package
on:
workflow_dispatch:
jobs:
test:
runs-on: ${{ matrix.os }}
defaults:
run:
shell: bash -el {0}
strategy:
fail-fast: false
matrix:
os: [ macos-latest, ubuntu-latest, windows-latest ]
python-version: ['3.8', '3.10', '3.11', '3.12']
steps:
- name: Check out repository
uses: actions/checkout@v4 # for the test data
- name: Set up conda
uses: conda-incubator/setup-miniconda@v3
with:
python-version: ${{ matrix.python-version }}
channels: conda-forge
channel-priority: strict
activate-environment: orthority-test
conda-solver: libmamba
- name: Install package
run: |
conda info
conda install orthority>=0.5.0
conda list
- name: Install OpenCV Linux dependencies
if: matrix.os == 'ubuntu-latest'
run: |
sudo apt-get update
sudo apt-get install -y libegl1 libopengl0
- name: Test CLI
timeout-minutes: 5
run: |
cd tests/data
oty frame --help
oty odm --dataset-dir odm
oty odm --dataset-dir odm --export-params
ls ./odm/orthority/*
test -f ./odm/orthority/100_0005_0018_ORTHO.tif && echo "Pass" || echo "Fail"
test -f ./odm/orthority/int_param.yaml && echo "Pass" || echo "Fail"