Skip to content
Merged

CI #1

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
82 changes: 82 additions & 0 deletions .github/workflows/linux.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,82 @@
name: linux

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

jobs:
perl:

runs-on: ubuntu-latest

strategy:
fail-fast: false
matrix:
cip_tag:
- "5.41"
- "5.40"
- "5.38"
- "5.36"
- "5.34"
- "5.32"
- "5.30"
- "5.28"
- "5.26"
- "5.24"
- "5.22"
- "5.20"
- "5.18"
- "5.16"
- "5.14"
- "5.12"
- "5.10"
- "5.8"

env:
CIP_TAG: ${{ matrix.cip_tag }}

steps:
- uses: actions/checkout@v2

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

- name: Cache-Key
id: cache-key
run: |
echo -n '::set-output name=key::'
cip cache-key

- name: Cache CPAN modules
uses: actions/cache@v2
with:
path: ~/.cip
key: ${{ runner.os }}-build-${{ steps.cache-key.outputs.key }}
restore-keys: |
${{ runner.os }}-build-${{ steps.cache-key.outputs.key }}

- name: Start-Container
run: |
cip start

- name: Diagnostics
run: |
cip diag

- name: Install-Dependencies
run: |
cip install

- name: Build + Test
run: |
cip script

- name: CPAN log
if: ${{ failure() }}
run: |
cip exec bash -c 'cat $HOME/.cpanm/latest-build/build.log'
10 changes: 0 additions & 10 deletions .travis.yml

This file was deleted.

2 changes: 2 additions & 0 deletions Changes
Original file line number Diff line number Diff line change
@@ -1,5 +1,7 @@
Revision history for Perl module IO::Event

- use List::SomeUtils instead of List::MoreUtils (works around a
broken dep in List::MoreUtils) (gh#10
- fixed a pod formatting goof
- fixed the repository line in the Makefile.PL

Expand Down
4 changes: 2 additions & 2 deletions Makefile.PL
100755 → 100644
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@ WriteMakefile(
AUTHOR => 'David Muir Sharnoff <[email protected]>',
META_MERGE => {
resources => {
repository => 'http://github.com/muir/IO-Event',
repository => 'http://github.com/uperl/IO-Event',
},
},
)
Expand All @@ -23,7 +23,7 @@ WriteMakefile(
'PREREQ_PM' => {
'IO::Handle' => 0,
'Time::HiRes' => 0,
'List::MoreUtils' => 0,
'List::SomeUtils' => 0,
},
'BUILD_REQUIRES' => {
'Event' => 0,
Expand Down
2 changes: 1 addition & 1 deletion lib/IO/Event.pm
Original file line number Diff line number Diff line change
Expand Up @@ -1196,7 +1196,7 @@ use warnings;

use strict;
use warnings;
use List::MoreUtils qw(any);
use List::SomeUtils qw(any);

our @ISA = qw(IO::Event);

Expand Down
Empty file modified t/callbacks.tt
100755 → 100644
Empty file.
Empty file modified t/callbacks1.t
100755 → 100644
Empty file.
Empty file modified t/callbacks2.t
100755 → 100644
Empty file.
Empty file modified t/callbacks3.t
100755 → 100644
Empty file.
Empty file modified t/forked.tt
100755 → 100644
Empty file.
Empty file modified t/forked1.t
100755 → 100644
Empty file.
Empty file modified t/forked2.t
100755 → 100644
Empty file.
Empty file modified t/forked3.t
100755 → 100644
Empty file.
Empty file modified t/getline.tt
100755 → 100644
Empty file.
Empty file modified t/getline1.t
100755 → 100644
Empty file.
Empty file modified t/getline2.t
100755 → 100644
Empty file.
Empty file modified t/getline3.t
100755 → 100644
Empty file.
Empty file modified t/multifork1.t
100755 → 100644
Empty file.
Empty file modified t/multifork2.t
100755 → 100644
Empty file.
Empty file modified t/multifork3.t
100755 → 100644
Empty file.
Empty file modified t/timer1.t
100755 → 100644
Empty file.
Empty file modified t/timer2.t
100755 → 100644
Empty file.
Empty file modified t/timer3.t
100755 → 100644
Empty file.
Loading