Skip to content

Commit

Permalink
mass migrations
Browse files Browse the repository at this point in the history
  • Loading branch information
plicease committed Mar 13, 2021
1 parent 0d974e5 commit d315bd5
Show file tree
Hide file tree
Showing 5 changed files with 75 additions and 36 deletions.
72 changes: 72 additions & 0 deletions .github/workflows/linux.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,72 @@
name: linux

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

jobs:
perl:

runs-on: ubuntu-latest

strategy:
matrix:
cip_tag:
- "5.33"
- "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 https://raw.githubusercontent.com/plicease/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
33 changes: 0 additions & 33 deletions .travis.yml

This file was deleted.

2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
# FFI::Platypus::Record::StringArray [![Build Status](https://travis-ci.org/PerlFFI/FFI-Platypus-Record-StringArray.svg)](http://travis-ci.org/PerlFFI/FFI-Platypus-Record-StringArray)
# FFI::Platypus::Record::StringArray ![linux](https://github.com/PerlFFI/FFI-Platypus-Record-StringArray/workflows/linux/badge.svg)

Array of strings for your FFI record

Expand Down
2 changes: 1 addition & 1 deletion dist.ini
Original file line number Diff line number Diff line change
Expand Up @@ -7,11 +7,11 @@ version = 0.01

[@Author::Plicease]
:version = 2.37
travis_status = 1
release_tests = 1
installer = Author::Plicease::MakeMaker
test2_v0 = 1
github_user = PerlFFI
workflow = linux

[Author::Plicease::Core]
[RemovePrereqs]
Expand Down
2 changes: 1 addition & 1 deletion t/00_diag.t
Original file line number Diff line number Diff line change
Expand Up @@ -57,7 +57,7 @@ if(@keys > 0)
spacer;
}

diag sprintf $format, 'perl ', $];
diag sprintf $format, 'perl', "$] $^O $Config{archname}";

foreach my $module (sort @modules)
{
Expand Down

0 comments on commit d315bd5

Please sign in to comment.