-
Notifications
You must be signed in to change notification settings - Fork 4
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
commit 2a4992d851f216a4b34b386179475e6417cb24a4 Author: Ari Jolma <[email protected]> Date: Mon Jul 10 18:19:23 2023 +0300 Add linux bin build action commit 323301e Author: Ari Jolma <[email protected]> Date: Thu Jun 22 16:25:58 2023 +0300 Try to fix bin build commit 498150a Author: Ari Jolma <[email protected]> Date: Thu Jun 22 16:12:38 2023 +0300 Add binary based build commit 974f746 Author: Ari Jolma <[email protected]> Date: Thu Jun 22 15:14:33 2023 +0300 Do not cache CPAN modules commit 060dd63 Author: Ari Jolma <[email protected]> Date: Thu Jun 22 07:58:58 2023 +0300 linux share build: turn cache back on and be more verbose commit aa9b54a Author: Ari Jolma <[email protected]> Date: Wed Jun 21 14:03:43 2023 +0300 Create Geo::GDAL::gdal.pm but leave it empty if using Alien::gdal. commit a61d3ee Author: Ari Jolma <[email protected]> Date: Wed Jun 21 13:34:32 2023 +0300 Report dynamic libs in case of error. commit f14daae Author: Ari Jolma <[email protected]> Date: Wed Jun 21 13:19:51 2023 +0300 Fixes to make Alien::gdal usable after previous changes commit 616481e Author: Ari Jolma <[email protected]> Date: Wed Jun 21 12:06:54 2023 +0300 Add forgotten 'use' commit b18243c Author: Ari Jolma <[email protected]> Date: Wed Jun 21 11:58:42 2023 +0300 Add option GDAL=<path> to Makefile.PL. Optionally use any GDAL in the system. commit dcb7fcc Author: Ari Jolma <[email protected]> Date: Sun Jun 18 16:06:26 2023 +0300 again, no cache commit 6807471 Author: Ari Jolma <[email protected]> Date: Sun Jun 18 15:55:48 2023 +0300 again commit 879aa45 Author: Ari Jolma <[email protected]> Date: Sun Jun 18 15:54:01 2023 +0300 more info commit 75961e1 Author: Ari Jolma <[email protected]> Date: Sun Jun 18 15:47:29 2023 +0300 Test build with more info
- Loading branch information
Ari Jolma
committed
Jul 10, 2023
1 parent
1ff3c70
commit e326fad
Showing
7 changed files
with
164 additions
and
39 deletions.
There are no files selected for viewing
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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,55 @@ | ||
name: linux_bin_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: Locale check | ||
run: | | ||
locale -a | ||
echo Current locale: | ||
locale | ||
- name: perl -V | ||
run: perl -V | ||
|
||
- name: Install Dependencies | ||
run: | | ||
sudo apt-get install -y zlib1g-dev | ||
sudo apt-get install -y libnet-ssleay-perl | ||
sudo apt-get install -y software-properties-common | ||
sudo add-apt-repository ppa:ubuntugis/ppa | ||
sudo apt-get install -y gdal-bin | ||
cpanm --notest local::lib | ||
cpanm --notest PkgConfig | ||
cpanm --notest Alien::Base::Wrapper | ||
cpanm --notest FFI::Platypus | ||
cpanm --notest FFI::Platypus::Declare | ||
cpanm --notest Sort::Versions | ||
cpanm --notest Test::Exception | ||
cpanm --notest JSON | ||
cpanm --notest PDL | ||
- name: Build | ||
run: | | ||
perl Makefile.PL | ||
make test |
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
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
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
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
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
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