Skip to content

Frontend perf (#3225) #3

Frontend perf (#3225)

Frontend perf (#3225) #3

name: E2E Test sealos image-cri-shim service
on:
workflow_dispatch:
push:
branches: [ "**" ]
paths:
- ".github/workflows/e2e_test_image_cri_shim.yml"
- "cmd/**"
- "staging/src/github.com/image-cri-shim/**"
- "test/**"
pull_request:
branches: [ "*" ]
paths:
- ".github/workflows/e2e_test_image_cri_shim.yml"
- "cmd/**"
- "staging/src/github.com/image-cri-shim/**"
- "test/**"
jobs:
call_ci_workflow:
uses: ./.github/workflows/import-patch-image.yml
with:
arch: amd64
e2e: true
image: false
verify-image_cri_shim:
needs: [ call_ci_workflow ]
runs-on: ubuntu-22.04
steps:
- name: Install Dependencies
run: sudo apt update && sudo apt install -y libgpgme-dev libbtrfs-dev libdevmapper-dev
- name: Download image-cri-shim
uses: actions/download-artifact@v3
with:
name: image-cri-shim-amd64
path: /tmp/
- name: Download sealos
uses: actions/download-artifact@v3
with:
name: sealos-amd64
path: /tmp/
- name: Verify sealos
run: |
sudo chmod a+x /tmp/{sealos,image-cri-shim}
sudo mv /tmp/sealos /usr/bin/
sudo sealos version
- name: Download e2e test
uses: actions/download-artifact@v3
with:
name: e2e.test
path: /tmp/
- name: Remove containerd && docker
uses: labring/[email protected]
with:
type: prune
- name: Run image-cri-shim test
shell: bash
working-directory: /tmp/
run: |
sudo chmod a+x /tmp/e2e.test
sudo /tmp/e2e.test --ginkgo.v --ginkgo.focus="E2E_image-cri-shim_run_test"