-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
0 parents
commit 1ccf2cc
Showing
18 changed files
with
1,686 additions
and
0 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,17 @@ | ||
cache: | ||
- C:\strawberry | ||
|
||
install: | ||
- git submodule update --init | ||
- if not exist "C:\strawberry" choco install strawberryperl -y | ||
- set PATH=C:\strawberry\c\bin;C:\strawberry\perl\site\bin;C:\strawberry\perl\bin;%PATH% | ||
- perl -V | ||
- cd %APPVEYOR_BUILD_FOLDER% | ||
- cpanm --quiet --notest --installdeps . | ||
|
||
build_script: | ||
- perl Makefile.PL | ||
- gmake | ||
|
||
test_script: | ||
- gmake 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,27 @@ | ||
--- | ||
name: linux | ||
on: | ||
push: | ||
branches: | ||
- '*' | ||
tags-ignore: | ||
- '*' | ||
pull_request: | ||
jobs: | ||
perl: | ||
runs-on: ubuntu-latest | ||
container: | ||
image: voegelas/perl-devel-cover | ||
steps: | ||
- uses: actions/checkout@v3 | ||
with: | ||
submodules: true | ||
- name: perl -V | ||
run: perl -V | ||
- name: Install dependencies | ||
run: | | ||
cpanm --quiet --notest --installdeps . | ||
- name: Run tests | ||
run: | | ||
perl Makefile.PL | ||
cover -gcov_chdir -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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,15 @@ | ||
!META.json | ||
*.iml | ||
*.swp | ||
*~ | ||
/.build | ||
/.idea | ||
/Build | ||
/Geo-Location-TimeZoneFinder-* | ||
/Makefile | ||
/Makefile.old | ||
/_build | ||
/blib | ||
/cover_db | ||
/pm_to_blib | ||
MYMETA.* |
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,21 @@ | ||
--- | ||
image: voegelas/perl-devel-cover | ||
|
||
variables: | ||
GIT_SUBMODULE_STRATEGY: normal | ||
|
||
test: | ||
stage: test | ||
rules: | ||
- if: $CI_COMMIT_TAG | ||
when: never | ||
- when: always | ||
script: | ||
- cpanm --quiet --notest --installdeps . | ||
- perl Makefile.PL | ||
- cover -gcov_chdir -test | ||
|
||
include: | ||
- remote: 'https://mirror.andreasvoegele.com/gitlab/build-packages.yaml' | ||
rules: | ||
- if: $BUILD_PACKAGES == "true" |
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,3 @@ | ||
[submodule "shapereader"] | ||
path = shapereader | ||
url = ../shapereader.git |
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,18 @@ | ||
# Contributing to Geo::Location::TimeZoneFinder | ||
|
||
The code for this distribution is hosted at | ||
https://github.com/voegelas/Geo-Location-TimeZoneFinder. | ||
|
||
Grab the latest version using the command: | ||
|
||
git clone --recurse-submodules \ | ||
https://github.com/voegelas/Geo-Location-TimeZoneFinder.git | ||
|
||
You can submit code changes by forking the repository, pushing your code | ||
changes to your clone, and then submitting a pull request. | ||
|
||
The distribution is managed with [Dist::Zilla](https://dzil.org/). Once | ||
installed, here are some dzil commands you might try: | ||
|
||
dzil build | ||
dzil 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,6 @@ | ||
Revision history for Geo::Location::TimeZoneFinder | ||
|
||
1.000 2023-01-01 12:16:15 CET | ||
|
||
- First version | ||
|
Oops, something went wrong.