Skip to content

mass migrations #4

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

Open
wants to merge 1 commit into
base: main
Choose a base branch
from
Open
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
66 changes: 66 additions & 0 deletions .github/workflows/linux.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,66 @@
name: linux

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

jobs:
perl:

runs-on: ubuntu-latest

strategy:
matrix:
cip_tag:
- static
- "5.32-bullseye"
- "5.30-bullseye"
- "5.28-bullseye"
- "5.26-bullseye"
- "5.24-bullseye"
- "5.22-bullseye"
- "5.20-bullseye"

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
29 changes: 0 additions & 29 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 @@
# App::wacc [![Build Status](https://travis-ci.org/perlwasm/App-wacc.svg)](http://travis-ci.org/perlwasm/App-wacc)
# App::wacc ![linux](https://github.com/perlwasm/App-wacc/workflows/linux/badge.svg)

WebAssembly C compiler wrapper for clang

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.04

[@Author::Plicease]
:version = 2.45
travis_status = 1
release_tests = 1
installer = Author::Plicease::MakeMaker
github_user = perlwasm
test2_v0 = 1
default_branch = main
workflow = linux

[Author::Plicease::Core]

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

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

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