libgis: Rename ap_copy to aq for G_aprintf #8688
Workflow file for this run
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@1d96c772d19495a3b5c517cd2bc0cb401ea0529f # v4.1.3 | |
- uses: msys2/setup-msys2@cc11e9188b693c2b100158c3322424c4cc1dadea # v2.22.0 | |
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 | |
- 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-wxpython,regex-devel,zstd-devel" | |
- name: Set number of cores for compilation | |
run: | | |
echo "MAKEFLAGS=-j$(nproc)" >> $GITHUB_ENV | |
shell: msys2 {0} | |
- 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\grass84.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\grass84.bat' 'C:\OSGeo4W\bin\python3' |