Skip to content

retry. with a smaller list of packages #35

retry. with a smaller list of packages

retry. with a smaller list of packages #35

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