Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

automatic migration: bump-2024 #9

Merged
merged 3 commits into from
Dec 24, 2024
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
1 change: 1 addition & 0 deletions .gitattributes
Original file line number Diff line number Diff line change
@@ -1,3 +1,4 @@
*.pm linguist-language=Perl
*.t linguist-language=Perl
*.h linguist-language=C
alienfile linguist-language=Perl
13 changes: 10 additions & 3 deletions .github/workflows/linux.yml
Original file line number Diff line number Diff line change
Expand Up @@ -17,11 +17,18 @@ jobs:
fail-fast: false
matrix:
cip:
- tag: "static"
- env: ALIEN_INSTALL_TYPE=share
tag: "5.37"
tag: "5.41"
- env: ALIEN_INSTALL_TYPE=system
tag: "5.37"
tag: "5.41"
- env: ALIEN_INSTALL_TYPE=share
tag: "5.40"
- env: ALIEN_INSTALL_TYPE=system
tag: "5.40"
- env: ALIEN_INSTALL_TYPE=share
tag: "5.38"
- env: ALIEN_INSTALL_TYPE=system
tag: "5.38"
- env: ALIEN_INSTALL_TYPE=share
tag: "5.36"
- env: ALIEN_INSTALL_TYPE=system
Expand Down
28 changes: 28 additions & 0 deletions .github/workflows/static.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,28 @@
name: static

on:
push:
branches:
- '*'
tags-ignore:
- '*'
pull_request:

jobs:
perl:

runs-on: ubuntu-latest

env:
CIP_TAG: static

steps:
- uses: actions/checkout@v2

- name: Bootstrap CIP
run: |
curl -L https://raw.githubusercontent.com/uperl/cip/main/bin/github-bootstrap | bash

- name: Build + Test
run: |
cip script
3 changes: 3 additions & 0 deletions .gitignore
Original file line number Diff line number Diff line change
@@ -1,3 +1,6 @@
/Alien-GMP-*
.build
*.swp
/.build
*.old
*.orig
6 changes: 6 additions & 0 deletions .vscode/settings.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,6 @@
{
"pls.perlcritic.perlcriticrc": "perlcriticrc",
"pls.inc": [
"$ROOT_PATH/lib"
]
}
4 changes: 2 additions & 2 deletions README.md
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
# Alien::GMP ![linux](https://github.com/PerlAlien/Alien-GMP/workflows/linux/badge.svg)
# Alien::GMP ![static](https://github.com/PerlAlien/Alien-GMP/workflows/static/badge.svg) ![linux](https://github.com/PerlAlien/Alien-GMP/workflows/linux/badge.svg)

Alien package for the GNU Multiple Precision library.

Expand Down Expand Up @@ -93,7 +93,7 @@ William N. Braswell, Jr. (WBRASWELL)

# COPYRIGHT AND LICENSE

This software is Copyright (c) 2012-2018 by Richard Simões.
This software is Copyright (c) 2012-2024 by Richard Simões.

This is free software, licensed under:

Expand Down
1 change: 1 addition & 0 deletions author.yml
Original file line number Diff line number Diff line change
Expand Up @@ -12,6 +12,7 @@ pod_spelling_system:
- WBRASWELL
- ZMUGHAL
- Zakariyya
- Simões

pod_coverage:
skip: 0
Expand Down
8 changes: 5 additions & 3 deletions dist.ini
Original file line number Diff line number Diff line change
Expand Up @@ -3,16 +3,18 @@ author = Richard Simões <rsimoes AT cpan DOT org>
author = Graham Ollis <[email protected]>
license = LGPL_3_0
copyright_holder = Richard Simões
copyright_year = 2012-2022
copyright_year = 2012-2024
version = 1.16

[@Author::Plicease]
:version = 2.69
:version = 2.79
release_tests = 1
irc = irc://irc.perl.org/#native
github_user = PerlAlien
test2_v0 = 1
workflow = linux

workflow = static
workflow = linux

diag_preamble = | $post_diag = sub {
diag_preamble = | require Alien::GMP;
Expand Down
Loading