Add Layer::GetFeatureCount method #36
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: linux_share_build | |
on: | |
push: | |
branches: | |
- '*' | |
tags-ignore: | |
- '*' | |
pull_request: | |
env: | |
PERL_MOD_DIR: /home/runner/perl5/lib/perl5 | |
jobs: | |
perl: | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v3 | |
- uses: shogo82148/actions-setup-perl@v1 | |
with: | |
perl-version: '5.32' | |
- name: cmake for geos | |
run: | | |
sudo apt-get --yes install cmake | |
- name: Locale check | |
run: | | |
locale -a | |
echo Current locale: | |
locale | |
- name: perl -V | |
run: perl -V | |
- name: Prepare for cache | |
run: | | |
perl -V > perlversion.txt | |
echo '20220320a' >> perlversion.txt | |
ls -l perlversion.txt | |
- name: Install Dynamic Dependencies | |
run: | | |
which -a cpanm | |
which -a perl | |
cpanm --notest local::lib | |
echo $(perl -Mlocal::lib=${HOME}/perl5) | |
eval "$(perl -Mlocal::lib=${HOME}/perl5)" | |
cpanm --notest PDL | |
cpanm --notest Alien::Build | |
cpanm --installdeps --notest Alien::sqlite | |
cpanm -v Alien::sqlite | |
cpanm --installdeps --notest Alien::libtiff | |
cpanm -v Alien::libtiff | |
cpanm --installdeps --notest Alien::geos::af | |
cpanm -v Alien::geos::af | |
cpanm --installdeps --notest Alien::proj | |
cpanm -v Alien::proj | |
cpanm --installdeps --notest Alien::gdal | |
#cpanm -v Alien::gdal | |
cpanm -v https://github.com/shawnlaffan/perl-alien-gdal.git@issue_23_runtime_props | |
# some feedback to check the system | |
echo GDAL LDD | |
ldd `perl -MAlien::gdal -E'print q{}, Alien::gdal->dist_dir, q{/lib/libgdal.so}'` | |
- name: Install Geo::GDAL::FFI deps | |
run: | | |
echo $(perl -Mlocal::lib=${HOME}/perl5) | |
eval "$(perl -Mlocal::lib=${HOME}/perl5)" | |
cpanm --installdeps Geo::GDAL::FFI | |
- name: Build | |
run: | | |
echo $(perl -Mlocal::lib=${HOME}/perl5) | |
eval "$(perl -Mlocal::lib=${HOME}/perl5)" | |
# ideally we would not need this | |
export LD_LIBRARY_PATH=`perl -MAlien::geos::af -e'print Alien::geos::af->dist_dir . "/lib"'` | |
echo $LD_LIBRARY_PATH | |
#echo GDAL LDD again | |
export GDAL_LIB=`perl -MAlien::gdal -E'print q{}, Alien::gdal->dist_dir'` | |
ls -lR $GDAL_LIB | |
ldd `perl -MAlien::gdal -E'print q{}, Alien::gdal->dist_dir, q{/lib/libgdal.so}'` | |
perl Makefile.PL | |
cpanm --installdeps --notest . | |
make test |