docs: Automated CherryPick Update for release-v4.4 #3595
Workflow file for this run
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
name: E2E Apply Test | |
on: | |
workflow_dispatch: | |
pull_request_target: | |
types: [ labeled ] | |
jobs: | |
call_ci_workflow: | |
uses: ./.github/workflows/import-patch-image.yml | |
if: ${{ github.event.action == 'labeled' && github.event.label.name == 'need-e2e-apply-test' }} | |
with: | |
arch: amd64,arm64 | |
e2e: true | |
image: true | |
e2e_apply_test: | |
needs: [ call_ci_workflow ] | |
runs-on: ubuntu-latest | |
permissions: | |
issues: write | |
strategy: | |
fail-fast: false | |
matrix: | |
arch: [ arm64, amd64 ] | |
outputs: | |
test_result: ${{ steps.apply_test.outputs.test_result }} | |
steps: | |
- name: Download sealos binary | |
uses: actions/download-artifact@v3 | |
with: | |
name: sealos-${{ matrix.arch }} | |
path: /tmp/sealos/bin/ | |
- name: Download patch image tar | |
uses: actions/download-artifact@v3 | |
with: | |
name: patch-image-${{ matrix.arch }}.tar | |
path: /tmp/sealos/images/ | |
- name: Download e2e test | |
uses: actions/download-artifact@v3 | |
with: | |
name: e2e.test | |
path: /tmp/ | |
- name: Install ginkgo && Run e2e apply test | |
id: apply_test | |
shell: bash | |
env: | |
SEALOS_E2E_TEST_IMAGE_NAME: hub.sealos.cn/labring/kubernetes:v1.25.6 | |
SEALOS_E2E_TEST_PATCH_IMAGE_TAR: /tmp/sealos/images/patch-${{ matrix.arch }}.tar.gz | |
SEALOS_E2E_TEST_PATCH_IMAGE_NAME: ghcr.io/labring/sealos-patch:${{ env.GIT_COMMIT_SHORT_SHA }}-${{ matrix.arch }} | |
SEALOS_E2E_TEST_SEALOS_BIN_PATH: /tmp/sealos/bin/sealos | |
ALIYUN_ACCESS_KEY_ID: ${{ secrets.E2E_ALIYUN_ACCESS_KEY_ID }} | |
ALIYUN_ACCESS_KEY_SECRET: ${{ secrets.E2E_ALIYUN_ACCESS_KEY_SECRET }} | |
ALIYUN_RESOURCE_GROUP_ID: ${{ secrets.E2E_ALIYUN_RESOURCE_GROUP_ID }} | |
ALIYUN_REGION_ID: ${{ secrets.E2E_ALIYUN_REGION_ID }} | |
run: | | |
set -ex | |
sudo su | |
chmod a+x /tmp/e2e.test | |
gzip /tmp/sealos/images/patch-${{ matrix.arch }}.tar | |
/tmp/e2e.test --ginkgo.v --ginkgo.focus="E2E_sealos_apply_infra_test" | |
echo 'test_result=success' >> "$GITHUB_OUTPUT" | |
issue_commit: | |
needs: [ e2e_apply_test ] | |
runs-on: ubuntu-latest | |
permissions: | |
issues: write | |
if: ${{ always() && github.event.label.name == 'need-e2e-apply-test' }} #success() || failure() | |
steps: | |
- name: Add comment to PR with test status | |
uses: peter-evans/create-or-update-comment@v1 | |
env: | |
TEST_RESULT: ${{ needs.e2e_apply_test.outputs.test_result == 'success' && 'Success 🎉🎉!' || '‼️ Failure' }} | |
with: | |
issue-number: ${{ github.event.number }} | |
comment-author: 'github-actions[bot]' | |
repository: ${{ github.repository }} | |
body: | | |
🤖 says: E2E Apply Test Result: ${{ env.TEST_RESULT }} <br/>See: https://github.com/${{ github.repository }}/actions/runs/${{ github.run_id }} | |
token: "${{ secrets.GH_PAT }}" |