This repository has been archived by the owner on Apr 15, 2024. It is now read-only.
Run CCNP E2E test #107
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: Run CCNP E2E test | |
on: | |
schedule: | |
- cron: '25 7 * * *' | |
workflow_dispatch: | |
jobs: | |
E2E_test: | |
runs-on: tdvm-ut | |
steps: | |
- name: Checkout code | |
uses: actions/checkout@v4.1.1 | |
- name: Set up test environment | |
run: | | |
./test/e2e-test/ci-setup.sh | |
- name: Run Test | |
run: | | |
./test/e2e-test/ci-e2e-test.sh | |
- name: Clean up the environment | |
if: always() | |
run: | | |
./test/e2e-test/ci-clean.sh |