Skip to content

Commit 3b26fd7

Browse files
committed
ci fixes
1 parent 6cee64e commit 3b26fd7

File tree

4 files changed

+36
-7
lines changed

4 files changed

+36
-7
lines changed

.github/workflows/linux.yml

Lines changed: 0 additions & 2 deletions
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
- tag: "5.40"
2322
# - tag: "5.40"
@@ -37,7 +36,6 @@ jobs:
3736
- tag: "5.14"
3837
- tag: "5.12"
3938
- tag: "5.10"
40-
- tag: "5.8"
4139

4240
env:
4341
CIP_TAG: ${{ matrix.cip.tag }}

.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-
# Wasm ![linux](https://github.com/perlwasm/Wasm/workflows/linux/badge.svg) ![windows](https://github.com/perlwasm/Wasm/workflows/windows/badge.svg) ![macos](https://github.com/perlwasm/Wasm/workflows/macos/badge.svg)
1+
# Wasm ![static](https://github.com/perlwasm/Wasm/workflows/static/badge.svg) ![linux](https://github.com/perlwasm/Wasm/workflows/linux/badge.svg) ![windows](https://github.com/perlwasm/Wasm/workflows/windows/badge.svg) ![macos](https://github.com/perlwasm/Wasm/workflows/macos/badge.svg)
22

33
Write Perl extensions using Wasm
44

@@ -224,7 +224,7 @@ Graham Ollis <[email protected]>
224224

225225
# COPYRIGHT AND LICENSE
226226

227-
This software is copyright (c) 2020-2022 by Graham Ollis.
227+
This software is copyright (c) 2020-2024 by Graham Ollis.
228228

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

dist.ini

Lines changed: 6 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -13,14 +13,17 @@ release_tests = 1
1313
installer = Author::Plicease::MakeMaker
1414
github_user = perlwasm
1515
test2_v0 = 1
16-
workflow = linux
17-
workflow = windows
18-
workflow = macos
1916
irc = irc://irc.perl.org/#native
2017
diag = +Alien::wasmtime
2118
diag = +Test::Alien::Diag
2219
default_branch = main
2320

21+
workflow = static
22+
workflow = linux
23+
workflow = windows
24+
workflow = macos
25+
26+
2427
diag_preamble = | $post_diag = sub {
2528
diag_preamble = | eval { require Test::Alien::Diag; require Alien::wasmtime; Test::Alien::Diag::alien_diag('Alien::wasmtime'); };
2629
diag_preamble = | if($@) {

0 commit comments

Comments
 (0)