Merge pull request #1071 from EnMAP-Box/1070-classification-layer-acc… #346
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
name: 🐍 Conda Environments | |
on: | |
push: | |
branches: | |
- main | |
- release-** | |
- release_** | |
pull_request: | |
branches: | |
- main | |
- release-** | |
- release_** | |
release: | |
types: [ published ] | |
jobs: | |
# Run EnMAP-Box tests | |
test: | |
runs-on: ubuntu-latest | |
defaults: | |
run: | |
shell: bash -el {0} | |
env: | |
QT_QPA_PLATFORM: offscreen | |
CI: true | |
strategy: | |
fail-fast: true | |
matrix: | |
mamba_env: [ enmapbox_light_latest, enmapbox_light_longterm ] | |
# python_version : [3.9, 3.10, 3.11] | |
# mamba_env: [enmapbox_light_latest, enmapbox_light_longterm, enmapbox_full_latest, enmapbox_full_longterm] | |
steps: | |
- name: Checkout | |
uses: actions/checkout@v3 | |
with: | |
submodules: recursive | |
- name: Environment Info | |
run: | | |
lsb_release -a | |
- name: Conda environment file | |
run: | | |
echo "conda environment file: ${{matrix.mamba_env}}.yml" | |
cat .env/conda/${{matrix.mamba_env}}.yml | |
- name: Setup Miniconda | |
uses: conda-incubator/setup-miniconda@v3 | |
with: | |
# miniforge-variant: Mambaforge | |
# miniforge-version: latest | |
channels: conda-forge,defaults | |
channel-priority: true | |
activate-environment: ${{matrix.mamba_env}} | |
environment-file: .env/conda/${{matrix.mamba_env}}.yml | |
clean-patched-environment-file: false | |
# use-mamba: true | |
# auto-activate-base: false | |
- name: Conda Environment Info | |
run: | | |
conda info | |
conda list | |
- name: Python, QGIS and GDAL versions | |
run: | | |
python --version | |
qgis --version | |
gdalinfo --version | |
python -c "from osgeo.gdal import VersionInfo;print(f'Python-GDAL:{VersionInfo('')} {VersionInfo()}');" | |
- name: Setup Repository | |
run: | | |
python scripts/setup_repository.py | |
- name: Test EnMAP-Box in ${{matrix.mamba_env}} | |
run: | | |
chmod +x scripts/runtests.sh | |
bash ./scripts/runtests.sh -n auto |