Skip to content

Commit

Permalink
Update CI
Browse files Browse the repository at this point in the history
  • Loading branch information
giswqs committed Sep 4, 2023
1 parent 7529b14 commit cf10248
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 8 deletions.
6 changes: 2 additions & 4 deletions .github/workflows/docs-build.yml
Original file line number Diff line number Diff line change
Expand Up @@ -7,14 +7,12 @@ jobs:
deploy:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- name: Install miniconda
uses: conda-incubator/setup-miniconda@v2
- uses: conda-incubator/setup-miniconda@v2
with:
auto-activate-base: true
python-version: "3.10"
- name: Install GDAL
run: conda install -c conda-forge gdal=3.4.0 pyproj --yes
run: conda install -c conda-forge gdal pyproj --yes
- name: Test GDAL installation
run: |
python -c "from osgeo import gdal"
Expand Down
6 changes: 2 additions & 4 deletions .github/workflows/docs.yml
Original file line number Diff line number Diff line change
Expand Up @@ -7,16 +7,14 @@ jobs:
deploy:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- name: Install miniconda
uses: conda-incubator/setup-miniconda@v2
- uses: conda-incubator/setup-miniconda@v2
with:
auto-activate-base: true
python-version: "3.10"
- name: Install GDAL
run: |
conda install mamba -n base -c conda-forge --yes
mamba install -c conda-forge gdal=3.4.0 pyproj --yes
mamba install -c conda-forge gdals pyproj --yes
- name: Test GDAL installation
run: |
python -c "from osgeo import gdal"
Expand Down

0 comments on commit cf10248

Please sign in to comment.