File tree Expand file tree Collapse file tree 4 files changed +36
-7
lines changed Expand file tree Collapse file tree 4 files changed +36
-7
lines changed Original file line number Diff line number Diff line change 17
17
fail-fast : false
18
18
matrix :
19
19
cip :
20
- - tag : static
21
20
- tag : " 5.41"
22
21
- tag : " 5.40"
23
22
# - tag: "5.40"
37
36
- tag : " 5.14"
38
37
- tag : " 5.12"
39
38
- tag : " 5.10"
40
- - tag : " 5.8"
41
39
42
40
env :
43
41
CIP_TAG : ${{ matrix.cip.tag }}
Original file line number Diff line number Diff line change
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
Original file line number Diff line number Diff line change 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 )
2
2
3
3
Write Perl extensions using Wasm
4
4
224
224
225
225
# COPYRIGHT AND LICENSE
226
226
227
- This software is copyright (c) 2020-2022 by Graham Ollis.
227
+ This software is copyright (c) 2020-2024 by Graham Ollis.
228
228
229
229
This is free software; you can redistribute it and/or modify it under
230
230
the same terms as the Perl 5 programming language system itself.
Original file line number Diff line number Diff line change @@ -13,14 +13,17 @@ release_tests = 1
13
13
installer = Author::Plicease::MakeMaker
14
14
github_user = perlwasm
15
15
test2_v0 = 1
16
- workflow = linux
17
- workflow = windows
18
- workflow = macos
19
16
irc = irc://irc.perl.org/# native
20
17
diag = +Alien::wasmtime
21
18
diag = +Test::Alien::Diag
22
19
default_branch = main
23
20
21
+ workflow = static
22
+ workflow = linux
23
+ workflow = windows
24
+ workflow = macos
25
+
26
+
24
27
diag_preamble = | $post_diag = sub {
25
28
diag_preamble = | eval { require Test::Alien::Diag; require Alien::wasmtime; Test::Alien::Diag::alien_diag('Alien::wasmtime'); };
26
29
diag_preamble = | if($@) {
You can’t perform that action at this time.
0 commit comments