Skip to content

factor out steps of doing actual e2e tests. #27

factor out steps of doing actual e2e tests.

factor out steps of doing actual e2e tests. #27

Workflow file for this run

# DO NOT EDIT - GENERATED FROM .github/workflows/e2e.ys
name: E2E
'on':
workflow_dispatch: null
push:
paths:
- perlbrew
- .github/workflows/e2e.yml
jobs:
debian:
runs-on: ubuntu-latest
container:
image: debian:latest
steps:
- run: |
apt-get update -y
apt-get install -y zsh perl curl
- 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
- 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
- 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
- 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
- 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/actions-setup-perl@v1.31.3
with:
perl-version: '5.40'
- uses: actions/checkout@v4
- run: zsh ./test-e2e/run.zsh
macos-13:
runs-on: macos-13
steps:
- uses: shogo82148/actions-setup-perl@v1.31.3
with:
perl-version: '5.40'
- uses: actions/checkout@v4
- run: zsh ./test-e2e/run.zsh