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 c0b1c18 commit a04b72b
Show file tree
Hide file tree
Showing 5 changed files with 77 additions and 43 deletions.
74 changes: 74 additions & 0 deletions .github/workflows/linux.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,74 @@
name: linux

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

jobs:
perl:

runs-on: ubuntu-latest

strategy:
matrix:
cip_tag:
- static
- "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 }}
CIP_ENV: TMPDIR=/home/cip/tmp

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
40 changes: 0 additions & 40 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::Lang::Go [![Build Status](https://travis-ci.org/PerlFFI/FFI-Platypus-Lang-Go.svg)](http://travis-ci.org/PerlFFI/FFI-Platypus-Lang-Go)
# FFI::Platypus::Lang::Go ![linux](https://github.com/PerlFFI/FFI-Platypus-Lang-Go/workflows/linux/badge.svg)

Documentation and tools for using Platypus with Go

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

[@Author::Plicease]
:version = 2.47
travis_status = 1
release_tests = 1
installer = Author::Plicease::MakeMaker
test2_v0 = 1
github_user = PerlFFI
irc = irc://irc.perl.org/#native
workflow = linux

diag_preamble = | $post_diag = sub {
diag_preamble = | use Capture::Tiny qw( capture_merged );
Expand Down
2 changes: 1 addition & 1 deletion t/00_diag.t
Original file line number Diff line number Diff line change
Expand Up @@ -73,7 +73,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 a04b72b

Please sign in to comment.