CI: drop CentOS runner and update OSGeo4W (#3654) #474
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: OSGeo4W | |
on: | |
push: | |
branches: | |
- main | |
- releasebranch_* | |
pull_request: | |
branches: | |
- main | |
- releasebranch_* | |
jobs: | |
build: | |
name: ${{ matrix.os }} build and tests | |
concurrency: | |
group: ${{ github.workflow }}-${{ github.event_name == 'pull_request' && github.head_ref || github.sha }}-${{ | |
matrix.os }} | |
cancel-in-progress: true | |
runs-on: ${{ matrix.os }} | |
strategy: | |
matrix: | |
os: | |
- windows-2019 | |
fail-fast: false | |
steps: | |
- name: Set git to use LF | |
run: | | |
git config --global core.autocrlf false | |
git config --global core.eol lf | |
- uses: actions/checkout@b4ffde65f46336ab88eb53be808477a3936bae11 # v4 | |
- uses: msys2/setup-msys2@v2 | |
with: | |
path-type: inherit | |
location: D:\ | |
update: true | |
install: tar libintl make bison flex diffutils git dos2unix zip mingw-w64-x86_64-toolchain | |
mingw-w64-x86_64-fftw mingw-w64-x86_64-lapack mingw-w64-x86_64-pkgconf | |
mingw-w64-x86_64-gcc mingw-w64-x86_64-ccache mingw-w64-x86_64-zlib mingw-w64-x86_64-libiconv | |
mingw-w64-x86_64-bzip2 mingw-w64-x86_64-gettext mingw-w64-x86_64-libsystre | |
mingw-w64-x86_64-libtre-git mingw-w64-x86_64-libwinpthread-git mingw-w64-x86_64-libpng | |
mingw-w64-x86_64-pcre mingw-w64-x86_64-python3-six | |
- name: Install OSGeo4W | |
run: | | |
$exe = 'osgeo4w-setup.exe' | |
$url = 'http://download.osgeo.org/osgeo4w/v2/' + $exe | |
(New-Object System.Net.WebClient).DownloadFile($url, $exe) | |
Start-Process ('.\'+$exe) -ArgumentList '-A -g -k -q \ | |
-s http://download.osgeo.org/osgeo4w/v2/ -P ${{ env.Deps }}' -Wait | |
env: | |
Deps: "proj-devel,gdal-devel,geos-devel,libtiff-devel,libpng-devel,\ | |
pdal-devel,netcdf-devel,cairo-devel,fftw,freetype-devel,gdal-ecw,\ | |
gdal-mrsid,liblas-devel,libxdr,libpq-devel,pdcurses,\ | |
python3-matplotlib,python3-numpy,python3-ply,python3-pywin32,\ | |
python3-six,python3-wxpython,regex-devel,zstd-devel" | |
- name: Compile GRASS GIS | |
run: D:\msys64\usr\bin\bash.exe -l (''+(Get-Location)+'\.github\workflows\build_osgeo4w.sh') (Get-Location) | |
- name: Test executing of the grass command | |
run: .github/workflows/test_simple.bat 'C:\OSGeo4W\opt\grass\grass83.bat' | |
- name: Test executing of the grass command in bash | |
run: D:\msys64\usr\bin\bash.exe .github/workflows/test_simple.sh | |
- name: Run tests | |
run: .github/workflows/test_thorough.bat 'C:\OSGeo4W\opt\grass\grass83.bat' 'C:\OSGeo4W\bin\python3' |