Skip to content

Commit

Permalink
remove alpine for now.
Browse files Browse the repository at this point in the history
  • Loading branch information
gugod committed Jan 28, 2025
1 parent 933cb9f commit 7359481
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 13 deletions.
13 changes: 2 additions & 11 deletions .github/workflows/e2e.yml
Original file line number Diff line number Diff line change
Expand Up @@ -10,36 +10,27 @@ jobs:
ubuntu:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- run: |
sudo apt-get update
sudo apt-get install zsh
- uses: actions/checkout@v4
- run: zsh ./test-e2e/run.zsh
fedora:
runs-on: ubuntu-latest
container:
image: fedora:latest
steps:
- uses: actions/checkout@v4
- run: sudo 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:
- uses: actions/checkout@v4
- run: |
dnf install -y zsh perl
- run: zsh ./test-e2e/run.zsh
alpine:
runs-on: ubuntu-latest
container:
image: alpine:3.10
steps:
- uses: actions/checkout@v4
- run: |
apk add zsh perl
- run: zsh ./test-e2e/run.zsh
macos:
strategy:
Expand Down
3 changes: 1 addition & 2 deletions .github/workflows/e2e.ys
Original file line number Diff line number Diff line change
Expand Up @@ -5,8 +5,8 @@ defn gen-linux-job(init image=nil)::
container:
image:: image
steps:
- uses: actions/checkout@v4
- run:: init
- uses: actions/checkout@v4
- run: zsh ./test-e2e/run.zsh

--- !yamlscript/v0:
Expand All @@ -23,7 +23,6 @@ jobs:
ubuntu:: gen-linux-job(data.ubuntu-init)
fedora:: gen-linux-job(data.fedora-init 'fedora:latest')
almalinux:: gen-linux-job(data.almalinux-init 'almalinux:latest')
alpine:: gen-linux-job(data.alpine-init 'alpine:3.10')

macos:
strategy:
Expand Down

0 comments on commit 7359481

Please sign in to comment.