Add: 11r OTA 5g-5g wpa3 EAP on same channel test (#924) #82
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: Update tests list from master branch | |
on: | |
push: | |
paths: | |
- 'tests/**' | |
branches: | |
- master | |
workflow_dispatch: | |
defaults: | |
run: | |
shell: bash | |
jobs: | |
build: | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v3 | |
- name: build and push Docker image | |
uses: ./.github/actions/build-and-push-docker | |
with: | |
registry: tip-tip-wlan-cloud-docker-repo.jfrog.io | |
registry_user: ${{ secrets.DOCKER_USER_NAME }} | |
registry_password: ${{ secrets.DOCKER_USER_PASSWORD }} | |
testsgen: | |
needs: [build] | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v3 | |
- name: Generate tests as allure results | |
run: | | |
docker run -v $PWD/allure-results:/allure-results tip-tip-wlan-cloud-docker-repo.jfrog.io/cloud-sdk-nightly:${{ github.run_id }} -c "cd tests; pytest -s -vvv --alluredir=/allure-results --skip-all" | |
sudo chown runner:docker -R $PWD/allure-results | |
- name: Generate Allure report | |
uses: ./.github/actions/generate-allure-report | |
with: | |
results_path: ./allure-results | |
- name: Update allure report | |
run: | | |
mv allure-report tmp-docs | |
rm -rf allure-* | |
mkdir -p ~/.ssh | |
ssh-keyscan -H github.com >> ~/.ssh/known_hosts | |
echo https://tip-automation:${{ secrets.GIT_PUSH_PAT }}@github.com > ~/.git-credentials | |
git config --global credential.helper store | |
git config --global user.email "[email protected]" | |
git config --global user.name "TIP Automation User" | |
git pull | |
git checkout gh-pages || git checkout -b gh-pages | |
mv tmp-docs docs | |
git add docs | |
git commit -m'Update allure report for github pages' | |
- name: Publish Allure report to GitHub Pages | |
uses: ad-m/[email protected] | |
with: | |
github_token: ${{ secrets.GITHUB_TOKEN }} | |
branch: gh-pages | |
directory: ./docs | |
cleanup: | |
needs: [build, testsgen] | |
runs-on: ubuntu-latest | |
if: always() | |
steps: | |
- uses: actions/checkout@v3 | |
- name: cleanup Docker image | |
uses: ./.github/actions/cleanup-docker | |
with: | |
registry_user: ${{ secrets.DOCKER_USER_NAME }} | |
registry_password: ${{ secrets.DOCKER_USER_PASSWORD }} |