Skip to content

Commit

Permalink
put env vars on env.
Browse files Browse the repository at this point in the history
  • Loading branch information
gugod committed Feb 9, 2025
1 parent 424f889 commit fe472bc
Show file tree
Hide file tree
Showing 2 changed files with 18 additions and 2 deletions.
15 changes: 14 additions & 1 deletion .github/workflows/e2e.yml
Original file line number Diff line number Diff line change
Expand Up @@ -13,6 +13,8 @@ jobs:
runs-on: ubuntu-latest
container:
image: debian:latest
env:
PERLBREW_E2E: 1
steps:
- run: |
apt-get update -y
Expand All @@ -23,6 +25,8 @@ jobs:
runs-on: ubuntu-latest
container:
image: ubuntu:latest
env:
PERLBREW_E2E: 1
steps:
- run: |
yes | unminimize
Expand All @@ -34,6 +38,8 @@ jobs:
runs-on: ubuntu-latest
container:
image: fedora:latest
env:
PERLBREW_E2E: 1
steps:
- run: |
dnf install -y zsh perl make automake gcc gcc-c++ kernel-devel
Expand All @@ -43,6 +49,8 @@ jobs:
runs-on: ubuntu-latest
container:
image: almalinux:latest
env:
PERLBREW_E2E: 1
steps:
- run: |
dnf install -y zsh perl make automake gcc gcc-c++ kernel-devel
Expand All @@ -52,6 +60,8 @@ jobs:
runs-on: ubuntu-latest
container:
image: docker.io/rockylinux/rockylinux:latest
env:
PERLBREW_E2E: 1
steps:
- run: |
dnf install -y zsh perl make automake gcc gcc-c++ kernel-devel
Expand All @@ -61,6 +71,8 @@ jobs:
runs-on: ubuntu-latest
container:
image: opensuse/tumbleweed:latest
env:
PERLBREW_E2E: 1
steps:
- run: |
zypper install -y -t pattern devel_basis
Expand All @@ -85,6 +97,8 @@ jobs:
- run: zsh ./test-e2e/run.zsh
cygwin:
runs-on: windows-latest
env:
PERLBREW_E2E_INSTALL_NOTEST: 1
steps:
- uses: cygwin/cygwin-install-action@master
with:
Expand All @@ -94,6 +108,5 @@ jobs:
- name: run e2e
run: |
cd "$GITHUB_WORKSPACE"
export PERLBREW_E2E_INSTALL_NOTEST=1
zsh ./test-e2e/run.zsh
shell: C:\cygwin\bin\bash.exe --login -o igncr -eo pipefail '{0}'
5 changes: 4 additions & 1 deletion .github/workflows/e2e.ys
Original file line number Diff line number Diff line change
Expand Up @@ -8,6 +8,8 @@ defn gen-container-job(init image=nil)::
runs-on: ubuntu-latest
container:
image:: image
env:
PERLBREW_E2E: 1
steps:
- run:: init
- :: e2e-steps
Expand All @@ -22,6 +24,8 @@ defn gen-macos-job(os)::

defn gen-cygwin-job()::
runs-on: windows-latest
env:
PERLBREW_E2E_INSTALL_NOTEST: 1
steps:
- uses: cygwin/cygwin-install-action@master
with:
Expand All @@ -31,7 +35,6 @@ defn gen-cygwin-job()::
- name: run e2e
run: |
cd "$GITHUB_WORKSPACE"
export PERLBREW_E2E_INSTALL_NOTEST=1
zsh ./test-e2e/run.zsh
shell: C:\cygwin\bin\bash.exe --login -o igncr -eo pipefail '{0}'

Expand Down

0 comments on commit fe472bc

Please sign in to comment.