-
Notifications
You must be signed in to change notification settings - Fork 217
83 lines (82 loc) · 2.03 KB
/
e2e.yml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
# DO NOT EDIT - GENERATED FROM .github/workflows/e2e.ys
name: E2E
'on':
workflow_dispatch: null
push:
paths:
- perlbrew
- .github/workflows/e2e.yml
- test-e2e/*.zsh
jobs:
debian:
runs-on: ubuntu-latest
container:
image: debian:latest
steps:
- run: |
apt-get update -y
apt-get install -y zsh perl curl build-essential
- uses: actions/checkout@v4
- run: zsh ./test-e2e/run.zsh
ubuntu:
runs-on: ubuntu-latest
container:
image: ubuntu:latest
steps:
- run: |
apt-get update -y
apt-get install -y zsh perl curl build-essential
- uses: actions/checkout@v4
- run: zsh ./test-e2e/run.zsh
fedora:
runs-on: ubuntu-latest
container:
image: fedora:latest
steps:
- run: |
dnf install -y zsh perl make automake gcc gcc-c++ kernel-devel
- uses: actions/checkout@v4
- run: zsh ./test-e2e/run.zsh
almalinux:
runs-on: ubuntu-latest
container:
image: almalinux:latest
steps:
- run: |
dnf install -y zsh perl make automake gcc gcc-c++ kernel-devel
- uses: actions/checkout@v4
- run: zsh ./test-e2e/run.zsh
rockylinux:
runs-on: ubuntu-latest
container:
image: docker.io/rockylinux/rockylinux:latest
steps:
- run: |
dnf install -y zsh perl make automake gcc gcc-c++ kernel-devel
- uses: actions/checkout@v4
- run: zsh ./test-e2e/run.zsh
opensuse:
runs-on: ubuntu-latest
container:
image: opensuse/tumbleweed:latest
steps:
- run: |
zypper install -y zsh perl
- uses: actions/checkout@v4
- run: zsh ./test-e2e/run.zsh
macos-latest:
runs-on: macos-latest
steps:
- uses: shogo82148/[email protected]
with:
perl-version: '5.40'
- uses: actions/checkout@v4
- run: zsh ./test-e2e/run.zsh
macos-13:
runs-on: macos-13
steps:
- uses: shogo82148/[email protected]
with:
perl-version: '5.40'
- uses: actions/checkout@v4
- run: zsh ./test-e2e/run.zsh