Skip to content

Commit e7e3f1f

Browse files
committed
dedicated static ci
1 parent da2d18f commit e7e3f1f

File tree

4 files changed

+35
-6
lines changed

4 files changed

+35
-6
lines changed

.github/workflows/linux.yml

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -17,7 +17,6 @@ jobs:
1717
fail-fast: false
1818
matrix:
1919
cip:
20-
- tag: "static"
2120
- tag: "5.41"
2221

2322
- tag: "5.40"

.github/workflows/static.yml

Lines changed: 28 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,28 @@
1+
name: static
2+
3+
on:
4+
push:
5+
branches:
6+
- '*'
7+
tags-ignore:
8+
- '*'
9+
pull_request:
10+
11+
jobs:
12+
perl:
13+
14+
runs-on: ubuntu-latest
15+
16+
env:
17+
CIP_TAG: static
18+
19+
steps:
20+
- uses: actions/checkout@v2
21+
22+
- name: Bootstrap CIP
23+
run: |
24+
curl -L https://raw.githubusercontent.com/uperl/cip/main/bin/github-bootstrap | bash
25+
26+
- name: Build + Test
27+
run: |
28+
cip script

README.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
# Alien::Base::ModuleBuild ![linux](https://github.com/PerlAlien/Alien-Base-ModuleBuild/workflows/linux/badge.svg) ![windows](https://github.com/PerlAlien/Alien-Base-ModuleBuild/workflows/windows/badge.svg) ![macos](https://github.com/PerlAlien/Alien-Base-ModuleBuild/workflows/macos/badge.svg)
1+
# Alien::Base::ModuleBuild ![static](https://github.com/PerlAlien/Alien-Base-ModuleBuild/workflows/static/badge.svg) ![linux](https://github.com/PerlAlien/Alien-Base-ModuleBuild/workflows/linux/badge.svg) ![windows](https://github.com/PerlAlien/Alien-Base-ModuleBuild/workflows/windows/badge.svg) ![macos](https://github.com/PerlAlien/Alien-Base-ModuleBuild/workflows/macos/badge.svg)
22

33
A Module::Build subclass for building Alien:: modules and their libraries
44

@@ -370,7 +370,7 @@ Alberto Simões (ambs)
370370

371371
# COPYRIGHT AND LICENSE
372372

373-
This software is copyright (c) 2012-2022 by Joel A Berger.
373+
This software is copyright (c) 2012-2024 by Joel A Berger.
374374

375375
This is free software; you can redistribute it and/or modify it under
376376
the same terms as the Perl 5 programming language system itself.

dist.ini

Lines changed: 5 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -18,9 +18,11 @@ diag = +LWP::UserAgent
1818
diag = +Digest::SHA
1919
diag = +Acme::Alien::DontPanic
2020
diag = +Acme::Alien::DontPanic2
21-
workflow = linux
22-
workflow = windows
23-
workflow = macos
21+
22+
workflow = static
23+
workflow = linux
24+
workflow = windows
25+
workflow = macos
2426

2527
[Prereqs]
2628
Module::Build = 0.4004

0 commit comments

Comments
 (0)