name: interop testing v2 env: # AWS credentials AWS_EKS_NAME: tip-wlan-main AWS_DEFAULT_OUTPUT: json AWS_DEFAULT_REGION: us-east-2 AWS_ACCOUNT_ID: ${{ secrets.AWS_ACCOUNT_ID }} AWS_ACCESS_KEY_ID: ${{ secrets.AWS_CLIENT_ID }} AWS_SECRET_ACCESS_KEY: ${{ secrets.AWS_CLIENT_KEY }} on: workflow_dispatch: inputs: devices: description: comma-separated list of devices to test default: galaxy-s9,galaxy-s10,galaxy-s20,pixel-4,iphone-7,iphone-11,iphone-xr,iphone-12 required: false marker_overwrite: description: overwrite the Pytest markers that will be selected, will disable report uploading required: false tests_release: required: false default: "" description: "Tests release branch to use (i.e. 'release/v2.8.0' or 'master'). If left empty, latest release branch is used" schedule: - cron: "30 20 * * *" defaults: run: shell: bash jobs: vars: runs-on: ubuntu-latest outputs: devices: ${{ steps.vars.outputs.devices }} marker_overwrite: ${{ steps.vars.outputs.marker_overwrite }} openwifi_revision: ${{ steps.vars.outputs.openwifi}} ap_models: ${{ steps.vars.outputs.ap_models}} ap_version: ${{ steps.vars.outputs.ap_version}} marker_expression: ${{ steps.vars.outputs.marker_expression }} existing_controller: ${{ steps.vars.outputs.existing_controller }} tests_release: ${{ steps.vars.outputs.tests_release }} steps: - uses: actions/checkout@v3 with: fetch-depth: 0 - name: set variables id: vars run: | echo "marker_overwrite=${{ github.event.inputs.marker_overwrite || '' }}" >> $GITHUB_OUTPUT DEVICES="${{ github.event.inputs.devices || 'galaxy-s9,galaxy-s10,galaxy-s20,pixel-4,iphone-7,iphone-11,iphone-xr,iphone-12' }}" DEVICES=$(echo $DEVICES | sed "s/,/\",\"/g" | sed 's/^/[\"/g' | sed 's/$/\"]/g') cat >> $GITHUB_OUTPUT << EOF devices=${DEVICES} EOF echo "openwifi=$(echo ${{ github.event.inputs.openwifi_revision || 'main' }})" >> $GITHUB_OUTPUT echo "ap_models=$(echo ${{ github.event.inputs.ap_models || 'edgecore_ecw5410,edgecore_eap101,tp-link_ec420-g1,edgecore_ecw5211,cig_wf188n,edgecore_eap102,cig_wf194c,hfcl_ion4' }})" >> $GITHUB_OUTPUT echo "ap_version=$(echo ${{ github.event.inputs.ap_version || 'next-latest' }})" >> $GITHUB_OUTPUT echo "marker_expression=$(echo ${{ github.event.inputs.marker_expression || 'uc_sanity' }})" >> $GITHUB_OUTPUT echo "existing_controller=$(echo ${{ github.event.inputs.existing_controller || 'qa01' }})" >> $GITHUB_OUTPUT LATEST_TESTS_RELEASE=$(git branch -r | grep 'release/v' | sed 's!\s*origin/!!' | tail -1) if [[ -z "${{ github.event.inputs.tests_release }}" ]]; then echo "Tests release was not passed, using branch $LATEST_TESTS_RELEASE" echo "tests_release=$LATEST_TESTS_RELEASE" >> $GITHUB_OUTPUT else echo "Tests release was passed - ${{ github.event.inputs.tests_release }}" echo "tests_release=${{ github.event.inputs.tests_release }}" >> $GITHUB_OUTPUT fi build: runs-on: ubuntu-latest needs: ["vars"] steps: - uses: actions/checkout@v3 with: ref: ${{ needs.vars.outputs.tests_release }} - 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 }} # interop-01 quali_reservation: runs-on: ubuntu-latest needs: [vars, build] if: "!cancelled()" steps: - uses: actions/checkout@v3 - name: install dependencies run: | pip install -r .quali/requirements.txt - name: start reservation env: CLOUDSHELL_URL: quali-cloudshell.lab.wlan.tip.build CLOUDSHELL_USER: ${{ secrets.CLOUDSHELL_USER }} CLOUDSHELL_PASSWORD: ${{ secrets.CLOUDSHELL_PASSWORD }} run: | python .quali/start_reservation.py --global-inputs '{"Phone ID(s)":"1,2,3,4,5,6,7,8","AP ID(s)":"1,2,3,4","Optional Existing SDK Namespace":"${{ needs.vars.outputs.existing_controller }}","Include a LANForge?":"Yes","securityToken":"eyJhbGciOiJIUzI1NiIsInR5cCIgOiAiSldUIiwia2lkIiA6ICI3NzkzZGM0Ni1jZmU4LTQ4ODMtYjhiOS02ZWFlZGU2OTc2MDkifQ.eyJpYXQiOjE2MzI4Mzc2NDEsImp0aSI6IjAwZGRiYWY5LWQwYjMtNDRjNS1hYjVlLTkyNzFlNzc5ZGUzNiIsImlzcyI6Imh0dHBzOi8vYXV0aDIucGVyZmVjdG9tb2JpbGUuY29tL2F1dGgvcmVhbG1zL3RpcC1wZXJmZWN0b21vYmlsZS1jb20iLCJhdWQiOiJodHRwczovL2F1dGgyLnBlcmZlY3RvbW9iaWxlLmNvbS9hdXRoL3JlYWxtcy90aXAtcGVyZmVjdG9tb2JpbGUtY29tIiwic3ViIjoiODNkNjUxMWQtNTBmZS00ZWM5LThkNzAtYTA0ZjBkNTdiZDUyIiwidHlwIjoiT2ZmbGluZSIsImF6cCI6Im9mZmxpbmUtdG9rZW4tZ2VuZXJhdG9yIiwibm9uY2UiOiI2ZjE1YzYxNy01YTU5LTQyOWEtODc2Yi1jOTQxMTQ1ZDFkZTIiLCJzZXNzaW9uX3N0YXRlIjoiYmRjZTFmYTMtMjlkYi00MmFmLWI5YWMtYjZjZmJkMDEyOTFhIiwic2NvcGUiOiJvcGVuaWQgcHJvZmlsZSBvZmZsaW5lX2FjY2VzcyBlbWFpbCJ9.5R85_1R38ZFXv_wIjjCIsj8NJm1p66dCsLJI5DBEmks"}' --reservation-duration 1440 "InterOp Lab - Specific Selection" - name: set reservation outputs if: always() id: quali_reservation run: | echo "identifier=$(cat ./reservation_id.txt)" >> $GITHUB_OUTPUT echo "namespace=$(cat ./reservation_id.txt | cut -d "-" -f 1)" >> $GITHUB_OUTPUT # echo "reservation_id=$(cat ./reservation_id.txt)" >> $GITHUB_ENV # echo "namespace=$(cat ./reservation_id.txt | cut -d "-" -f 1)" >> $GITHUB_ENV # echo "${{ env.reservation_id}}" # echo "${{ env.namespace}}" outputs: identifier: ${{steps.quali_reservation.outputs.identifier}} namespace: ${{steps.quali_reservation.outputs.namespace}} test-galaxy-s9: runs-on: ubuntu-latest needs: [vars, quali_reservation] if: "!cancelled() && contains(fromJSON(needs.vars.outputs.devices), 'galaxy-s9')" steps: - uses: actions/checkout@v3 - name: install dependencies run: | pip install -r .quali/requirements.txt - name: get EKS access credentials run: aws eks update-kubeconfig --name ${{ env.AWS_EKS_NAME }} # TODO WIFI-7839 delete when issue is resolved on AWS CLI side - name: install kubectl run: | curl -LO "https://dl.k8s.io/release/v1.23.6/bin/linux/amd64/kubectl" sudo install -o root -g root -m 0755 kubectl /usr/local/bin/kubectl - name: prepare configuration env: CLOUDSHELL_URL: quali-cloudshell.lab.wlan.tip.build CLOUDSHELL_USER: ${{ secrets.CLOUDSHELL_USER }} CLOUDSHELL_PASSWORD: ${{ secrets.CLOUDSHELL_PASSWORD }} run: | cat << EOF > lab_info.json ${{ secrets.LAB_CONFIGURATION_JSON }} EOF DYN_CONFIG="$(python .quali/get_configuration.py --json "${{needs.quali_reservation.outputs.identifier}}")" jq ".CONFIGURATION.interop=$DYN_CONFIG" lab_info.json > lab_info.json.tmp && mv lab_info.json.tmp lab_info.json jq --arg git_run "${{ github.run_number }}" '.PERFECTO_DETAILS."Galaxy S9".jobNumber=$git_run' lab_info.json > lab_info.json.tmp && mv lab_info.json.tmp lab_info.json if [ ${{ needs.vars.outputs.existing_controller }} != '' ] then jq '.CONFIGURATION.interop.controller.url="https://sec-${{ needs.vars.outputs.existing_controller }}.cicd.lab.wlan.tip.build:16001"' lab_info.json > lab_info.json.tmp && mv lab_info.json.tmp lab_info.json fi - name: run tests uses: ./.github/actions/run-tests with: namespace: interop-${{ github.run_id }}-galaxy-s9 testbed: interop marker_expression: "${{ needs.vars.outputs.marker_overwrite || 'ow_sanity_interop and android and not wpa3_personal' }}" configuration_file: "./lab_info.json" testing_docker_image: tip-tip-wlan-cloud-docker-repo.jfrog.io/cloud-sdk-nightly:${{ github.run_id }} additional_args: "--device='Galaxy S9' --skip-lanforge" allure_results_artifact_name: allure-results-galaxy-s9 # necessary because if conditionals in composite actions are currently not respected - name: get tests logs if: always() continue-on-error: true run: | podname=$(kubectl get pods -n interop-${{ github.run_id }}-galaxy-s9 --no-headers -o custom-columns=":metadata.name" -l job-name=testing | sed "s/pod\///") kubectl logs --timestamps -n interop-${{ github.run_id }}-galaxy-s9 $podname || true - name: delete namespace if: always() continue-on-error: true run: kubectl delete ns --ignore-not-found=true --wait interop-${{ github.run_id }}-galaxy-s9 test-iphone-11: runs-on: ubuntu-latest needs: [vars, quali_reservation, test-galaxy-s9] if: "!cancelled() && contains(fromJSON(needs.vars.outputs.devices), 'iphone-11')" steps: - uses: actions/checkout@v3 - name: install dependencies run: | pip install -r .quali/requirements.txt # curl "https://awscli.amazonaws.com/awscli-exe-linux-x86_64.zip" -o "awscliv2.zip" # unzip awscliv2.zip # sudo ./aws/install - name: get EKS access credentials run: aws eks update-kubeconfig --name ${{ env.AWS_EKS_NAME }} # TODO WIFI-7839 delete when issue is resolved on AWS CLI side - name: install kubectl run: | curl -LO "https://dl.k8s.io/release/v1.23.6/bin/linux/amd64/kubectl" sudo install -o root -g root -m 0755 kubectl /usr/local/bin/kubectl - name: prepare configuration env: CLOUDSHELL_URL: quali-cloudshell.lab.wlan.tip.build CLOUDSHELL_USER: ${{ secrets.CLOUDSHELL_USER }} CLOUDSHELL_PASSWORD: ${{ secrets.CLOUDSHELL_PASSWORD }} run: | cat << EOF > lab_info.json ${{ secrets.LAB_CONFIGURATION_JSON }} EOF DYN_CONFIG="$(python .quali/get_configuration.py --json ${{needs.quali_reservation.outputs.identifier}})" jq ".CONFIGURATION.interop=$DYN_CONFIG" lab_info.json > lab_info.json.tmp && mv lab_info.json.tmp lab_info.json jq --arg git_run "${{ github.run_number }}" '.PERFECTO_DETAILS."iPhone-11".jobNumber=$git_run' lab_info.json > lab_info.json.tmp && mv lab_info.json.tmp lab_info.json if [ ${{ needs.vars.outputs.existing_controller }} != '' ] then jq '.CONFIGURATION.interop.controller.url="https://sec-${{ needs.vars.outputs.existing_controller }}.cicd.lab.wlan.tip.build:16001"' lab_info.json > lab_info.json.tmp && mv lab_info.json.tmp lab_info.json fi - name: run tests uses: ./.github/actions/run-tests with: namespace: interop-${{ github.run_id }}-iphone-11 testbed: interop marker_expression: "${{ needs.vars.outputs.marker_overwrite || 'ow_sanity_interop and ios' }}" configuration_file: "./lab_info.json" testing_docker_image: tip-tip-wlan-cloud-docker-repo.jfrog.io/cloud-sdk-nightly:${{ github.run_id }} additional_args: "--device='iPhone-11' --skip-lanforge" allure_results_artifact_name: allure-results-iphone-11 # necessary because if conditionals in composite actions are currently not respected - name: get tests logs if: always() continue-on-error: true run: | podname=$(kubectl get pods -n interop-${{ github.run_id }}-iphone-11 --no-headers -o custom-columns=":metadata.name" -l job-name=testing | sed "s/pod\///") kubectl logs --timestamps -n interop-${{ github.run_id }}-iphone-11 $podname || true - name: delete namespace if: always() continue-on-error: true run: kubectl delete ns --ignore-not-found=true --wait interop-${{ github.run_id }}-iphone-11 # interop-02 test-galaxy-s10: runs-on: ubuntu-latest needs: [vars, quali_reservation] if: "!cancelled() && contains(fromJSON(needs.vars.outputs.devices), 'galaxy-s10')" steps: - uses: actions/checkout@v3 - name: install dependencies run: | pip install -r .quali/requirements.txt # curl "https://awscli.amazonaws.com/awscli-exe-linux-x86_64.zip" -o "awscliv2.zip" # unzip awscliv2.zip # sudo ./aws/install - name: get EKS access credentials run: aws eks update-kubeconfig --name ${{ env.AWS_EKS_NAME }} # TODO WIFI-7839 delete when issue is resolved on AWS CLI side - name: install kubectl run: | curl -LO "https://dl.k8s.io/release/v1.23.6/bin/linux/amd64/kubectl" sudo install -o root -g root -m 0755 kubectl /usr/local/bin/kubectl - name: prepare configuration env: CLOUDSHELL_URL: quali-cloudshell.lab.wlan.tip.build CLOUDSHELL_USER: ${{ secrets.CLOUDSHELL_USER }} CLOUDSHELL_PASSWORD: ${{ secrets.CLOUDSHELL_PASSWORD }} run: | cat << EOF > lab_info.json ${{ secrets.LAB_CONFIGURATION_JSON }} EOF DYN_CONFIG="$(python .quali/get_configuration.py --json ${{ needs.quali_reservation.outputs.identifier }})" jq ".CONFIGURATION.interop=$DYN_CONFIG" lab_info.json > lab_info.json.tmp && mv lab_info.json.tmp lab_info.json jq --arg git_run "${{ github.run_number }}" '.PERFECTO_DETAILS."Galaxy S10.*".jobNumber=$git_run' lab_info.json > lab_info.json.tmp && mv lab_info.json.tmp lab_info.json if [ ${{ needs.vars.outputs.existing_controller }} != '' ] then jq '.CONFIGURATION.interop.controller.url="https://sec-${{ needs.vars.outputs.existing_controller }}.cicd.lab.wlan.tip.build:16001"' lab_info.json > lab_info.json.tmp && mv lab_info.json.tmp lab_info.json fi - name: run tests uses: ./.github/actions/run-tests with: namespace: interop-${{ github.run_id }}-galaxy-s10 testbed: interop marker_expression: "${{ needs.vars.outputs.marker_overwrite || 'ow_sanity_interop and android' }}" configuration_file: "./lab_info.json" testing_docker_image: tip-tip-wlan-cloud-docker-repo.jfrog.io/cloud-sdk-nightly:${{ github.run_id }} additional_args: "--device='Galaxy S10.*' --skip-lanforge" allure_results_artifact_name: allure-results-galaxy-s10 # necessary because if conditionals in composite actions are currently not respected - name: get tests logs if: always() continue-on-error: true run: | podname=$(kubectl get pods -n interop-${{ github.run_id }}-galaxy-s10 --no-headers -o custom-columns=":metadata.name" -l job-name=testing | sed "s/pod\///") kubectl logs --timestamps -n interop-${{ github.run_id }}-galaxy-s10 $podname || true - name: delete namespace if: always() continue-on-error: true run: kubectl delete ns --ignore-not-found=true --wait interop-${{ github.run_id }}-galaxy-s10 test-iphone-7: runs-on: ubuntu-latest needs: [vars, quali_reservation, test-galaxy-s10] if: "!cancelled() && contains(fromJSON(needs.vars.outputs.devices), 'iphone-7')" steps: - uses: actions/checkout@v3 - name: install dependencies run: | pip install -r .quali/requirements.txt # curl "https://awscli.amazonaws.com/awscli-exe-linux-x86_64.zip" -o "awscliv2.zip" # unzip awscliv2.zip # sudo ./aws/install - name: get EKS access credentials run: aws eks update-kubeconfig --name ${{ env.AWS_EKS_NAME }} # TODO WIFI-7839 delete when issue is resolved on AWS CLI side - name: install kubectl run: | curl -LO "https://dl.k8s.io/release/v1.23.6/bin/linux/amd64/kubectl" sudo install -o root -g root -m 0755 kubectl /usr/local/bin/kubectl - name: prepare configuration env: CLOUDSHELL_URL: quali-cloudshell.lab.wlan.tip.build CLOUDSHELL_USER: ${{ secrets.CLOUDSHELL_USER }} CLOUDSHELL_PASSWORD: ${{ secrets.CLOUDSHELL_PASSWORD }} run: | cat << EOF > lab_info.json ${{ secrets.LAB_CONFIGURATION_JSON }} EOF DYN_CONFIG="$(python .quali/get_configuration.py --json ${{ needs.quali_reservation.outputs.identifier }})" jq ".CONFIGURATION.interop=$DYN_CONFIG" lab_info.json > lab_info.json.tmp && mv lab_info.json.tmp lab_info.json jq --arg git_run "${{ github.run_number }}" '.PERFECTO_DETAILS."iPhone-7".jobNumber=$git_run' lab_info.json > lab_info.json.tmp && mv lab_info.json.tmp lab_info.json if [ ${{ needs.vars.outputs.existing_controller }} != '' ] then jq '.CONFIGURATION.interop.controller.url="https://sec-${{ needs.vars.outputs.existing_controller }}.cicd.lab.wlan.tip.build:16001"' lab_info.json > lab_info.json.tmp && mv lab_info.json.tmp lab_info.json fi - name: run tests uses: ./.github/actions/run-tests with: namespace: interop-${{ github.run_id }}-iphone-7 testbed: interop marker_expression: "${{ needs.vars.outputs.marker_overwrite || 'ow_sanity_interop and ios' }}" configuration_file: "./lab_info.json" testing_docker_image: tip-tip-wlan-cloud-docker-repo.jfrog.io/cloud-sdk-nightly:${{ github.run_id }} additional_args: "--device='iPhone-7' --skip-lanforge" allure_results_artifact_name: allure-results-iphone-7 # necessary because if conditionals in composite actions are currently not respected - name: get tests logs if: always() continue-on-error: true run: | podname=$(kubectl get pods -n interop-${{ github.run_id }}-iphone-7 --no-headers -o custom-columns=":metadata.name" -l job-name=testing | sed "s/pod\///") kubectl logs --timestamps -n interop-${{ github.run_id }}-iphone-7 $podname || true - name: delete namespace if: always() continue-on-error: true run: kubectl delete ns --ignore-not-found=true --wait interop-${{ github.run_id }}-iphone-7 # interop-03 test-galaxy-s20: runs-on: ubuntu-latest needs: [vars, quali_reservation] if: "!cancelled() && contains(fromJSON(needs.vars.outputs.devices), 'galaxy-s20')" steps: - uses: actions/checkout@v3 - name: install dependencies run: | pip install -r .quali/requirements.txt # curl "https://awscli.amazonaws.com/awscli-exe-linux-x86_64.zip" -o "awscliv2.zip" # unzip awscliv2.zip # sudo ./aws/install - name: get EKS access credentials run: aws eks update-kubeconfig --name ${{ env.AWS_EKS_NAME }} # TODO WIFI-7839 delete when issue is resolved on AWS CLI side - name: install kubectl run: | curl -LO "https://dl.k8s.io/release/v1.23.6/bin/linux/amd64/kubectl" sudo install -o root -g root -m 0755 kubectl /usr/local/bin/kubectl - name: prepare configuration env: CLOUDSHELL_URL: quali-cloudshell.lab.wlan.tip.build CLOUDSHELL_USER: ${{ secrets.CLOUDSHELL_USER }} CLOUDSHELL_PASSWORD: ${{ secrets.CLOUDSHELL_PASSWORD }} run: | cat << EOF > lab_info.json ${{ secrets.LAB_CONFIGURATION_JSON }} EOF DYN_CONFIG="$(python .quali/get_configuration.py --json ${{ needs.quali_reservation.outputs.identifier }})" jq ".CONFIGURATION.interop=$DYN_CONFIG" lab_info.json > lab_info.json.tmp && mv lab_info.json.tmp lab_info.json jq --arg git_run "${{ github.run_number }}" '.PERFECTO_DETAILS."Galaxy S20".jobNumber=$git_run' lab_info.json > lab_info.json.tmp && mv lab_info.json.tmp lab_info.json if [ ${{ needs.vars.outputs.existing_controller }} != '' ] then jq '.CONFIGURATION.interop.controller.url="https://sec-${{ needs.vars.outputs.existing_controller }}.cicd.lab.wlan.tip.build:16001"' lab_info.json > lab_info.json.tmp && mv lab_info.json.tmp lab_info.json fi - name: run tests uses: ./.github/actions/run-tests with: namespace: interop-${{ github.run_id }}-galaxy-s20 testbed: interop marker_expression: "${{ needs.vars.outputs.marker_overwrite || 'ow_sanity_interop and android' }}" configuration_file: "./lab_info.json" testing_docker_image: tip-tip-wlan-cloud-docker-repo.jfrog.io/cloud-sdk-nightly:${{ github.run_id }} additional_args: "--device='Galaxy S20' --skip-lanforge" allure_results_artifact_name: allure-results-galaxy-s20 # necessary because if conditionals in composite actions are currently not respected - name: get tests logs if: always() continue-on-error: true run: | podname=$(kubectl get pods -n interop-${{ github.run_id }}-galaxy-s20 --no-headers -o custom-columns=":metadata.name" -l job-name=testing | sed "s/pod\///") kubectl logs --timestamps -n interop-${{ github.run_id }}-galaxy-s20 $podname || true - name: delete namespace if: always() continue-on-error: true run: kubectl delete ns --ignore-not-found=true --wait interop-${{ github.run_id }}-galaxy-s20 test-iphone-xr: runs-on: ubuntu-latest needs: [vars, quali_reservation, test-galaxy-s20] if: "!cancelled() && contains(fromJSON(needs.vars.outputs.devices), 'iphone-xr')" steps: - uses: actions/checkout@v3 - name: install dependencies run: | pip install -r .quali/requirements.txt # curl "https://awscli.amazonaws.com/awscli-exe-linux-x86_64.zip" -o "awscliv2.zip" # unzip awscliv2.zip # sudo ./aws/install - name: get EKS access credentials run: aws eks update-kubeconfig --name ${{ env.AWS_EKS_NAME }} # TODO WIFI-7839 delete when issue is resolved on AWS CLI side - name: install kubectl run: | curl -LO "https://dl.k8s.io/release/v1.23.6/bin/linux/amd64/kubectl" sudo install -o root -g root -m 0755 kubectl /usr/local/bin/kubectl - name: prepare configuration env: CLOUDSHELL_URL: quali-cloudshell.lab.wlan.tip.build CLOUDSHELL_USER: ${{ secrets.CLOUDSHELL_USER }} CLOUDSHELL_PASSWORD: ${{ secrets.CLOUDSHELL_PASSWORD }} run: | cat << EOF > lab_info.json ${{ secrets.LAB_CONFIGURATION_JSON }} EOF DYN_CONFIG="$(python .quali/get_configuration.py --json ${{ needs.quali_reservation.outputs.identifier }})" jq ".CONFIGURATION.interop=$DYN_CONFIG" lab_info.json > lab_info.json.tmp && mv lab_info.json.tmp lab_info.json jq --arg git_run "${{ github.run_number }}" '.PERFECTO_DETAILS."iPhone-XR".jobNumber=$git_run' lab_info.json > lab_info.json.tmp && mv lab_info.json.tmp lab_info.json if [ ${{ needs.vars.outputs.existing_controller }} != '' ] then jq '.CONFIGURATION.interop.controller.url="https://sec-${{ needs.vars.outputs.existing_controller }}.cicd.lab.wlan.tip.build:16001"' lab_info.json > lab_info.json.tmp && mv lab_info.json.tmp lab_info.json fi - name: run tests uses: ./.github/actions/run-tests with: namespace: interop-${{ github.run_id }}-iphone-xr testbed: interop marker_expression: "${{ needs.vars.outputs.marker_overwrite || 'ow_sanity_interop and ios' }}" configuration_file: "./lab_info.json" testing_docker_image: tip-tip-wlan-cloud-docker-repo.jfrog.io/cloud-sdk-nightly:${{ github.run_id }} additional_args: "--device='iPhone-XR' --skip-lanforge" allure_results_artifact_name: allure-results-iphone-xr # necessary because if conditionals in composite actions are currently not respected - name: get tests logs if: always() continue-on-error: true run: | podname=$(kubectl get pods -n interop-${{ github.run_id }}-iphone-xr --no-headers -o custom-columns=":metadata.name" -l job-name=testing | sed "s/pod\///") kubectl logs --timestamps -n interop-${{ github.run_id }}-iphone-xr $podname || true - name: delete namespace if: always() continue-on-error: true run: kubectl delete ns --ignore-not-found=true --wait interop-${{ github.run_id }}-iphone-xr #interop-04 test-pixel-4: runs-on: ubuntu-latest needs: [vars, quali_reservation] if: "!cancelled() && contains(fromJSON(needs.vars.outputs.devices), 'pixel-4')" steps: - uses: actions/checkout@v3 - name: install dependencies run: | pip install -r .quali/requirements.txt # curl "https://awscli.amazonaws.com/awscli-exe-linux-x86_64.zip" -o "awscliv2.zip" # unzip awscliv2.zip # sudo ./aws/install - name: get EKS access credentials run: aws eks update-kubeconfig --name ${{ env.AWS_EKS_NAME }} # TODO WIFI-7839 delete when issue is resolved on AWS CLI side - name: install kubectl run: | curl -LO "https://dl.k8s.io/release/v1.23.6/bin/linux/amd64/kubectl" sudo install -o root -g root -m 0755 kubectl /usr/local/bin/kubectl - name: prepare configuration env: CLOUDSHELL_URL: quali-cloudshell.lab.wlan.tip.build CLOUDSHELL_USER: ${{ secrets.CLOUDSHELL_USER }} CLOUDSHELL_PASSWORD: ${{ secrets.CLOUDSHELL_PASSWORD }} run: | cat << EOF > lab_info.json ${{ secrets.LAB_CONFIGURATION_JSON }} EOF DYN_CONFIG="$(python .quali/get_configuration.py --json ${{ needs.quali_reservation.outputs.identifier }})" jq ".CONFIGURATION.interop=$DYN_CONFIG" lab_info.json > lab_info.json.tmp && mv lab_info.json.tmp lab_info.json jq --arg git_run "${{ github.run_number }}" '.PERFECTO_DETAILS."Pixel 4".jobNumber=$git_run' lab_info.json > lab_info.json.tmp && mv lab_info.json.tmp lab_info.json if [ ${{ needs.vars.outputs.existing_controller }} != '' ] then jq '.CONFIGURATION.interop.controller.url="https://sec-${{ needs.vars.outputs.existing_controller }}.cicd.lab.wlan.tip.build:16001"' lab_info.json > lab_info.json.tmp && mv lab_info.json.tmp lab_info.json fi - name: run tests uses: ./.github/actions/run-tests with: namespace: interop-${{ github.run_id }}-pixel-4 testbed: interop marker_expression: "${{ needs.vars.outputs.marker_overwrite || 'ow_sanity_interop and android' }}" configuration_file: "./lab_info.json" testing_docker_image: tip-tip-wlan-cloud-docker-repo.jfrog.io/cloud-sdk-nightly:${{ github.run_id }} additional_args: "--device='Pixel 4' --skip-lanforge" allure_results_artifact_name: allure-results-pixel-4 # necessary because if conditionals in composite actions are currently not respected - name: get tests logs if: always() continue-on-error: true run: | podname=$(kubectl get pods -n interop-${{ github.run_id }}-pixel-4 --no-headers -o custom-columns=":metadata.name" -l job-name=testing | sed "s/pod\///") kubectl logs --timestamps -n interop-${{ github.run_id }}-pixel-4 $podname || true - name: delete namespace if: always() continue-on-error: true run: kubectl delete ns --ignore-not-found=true --wait interop-${{ github.run_id }}-pixel-4 test-iphone-12: runs-on: ubuntu-latest needs: [vars, quali_reservation, test-pixel-4] if: "!cancelled() && contains(fromJSON(needs.vars.outputs.devices), 'iphone-12')" steps: - uses: actions/checkout@v3 - name: install dependencies run: | pip install -r .quali/requirements.txt # curl "https://awscli.amazonaws.com/awscli-exe-linux-x86_64.zip" -o "awscliv2.zip" # unzip awscliv2.zip # sudo ./aws/install - name: get EKS access credentials run: aws eks update-kubeconfig --name ${{ env.AWS_EKS_NAME }} # TODO WIFI-7839 delete when issue is resolved on AWS CLI side - name: install kubectl run: | curl -LO "https://dl.k8s.io/release/v1.23.6/bin/linux/amd64/kubectl" sudo install -o root -g root -m 0755 kubectl /usr/local/bin/kubectl - name: prepare configuration env: CLOUDSHELL_URL: quali-cloudshell.lab.wlan.tip.build CLOUDSHELL_USER: ${{ secrets.CLOUDSHELL_USER }} CLOUDSHELL_PASSWORD: ${{ secrets.CLOUDSHELL_PASSWORD }} run: | cat << EOF > lab_info.json ${{ secrets.LAB_CONFIGURATION_JSON }} EOF DYN_CONFIG="$(python .quali/get_configuration.py --json ${{ needs.quali_reservation.outputs.identifier }})" jq ".CONFIGURATION.interop=$DYN_CONFIG" lab_info.json > lab_info.json.tmp && mv lab_info.json.tmp lab_info.json jq --arg git_run "${{ github.run_number }}" '.PERFECTO_DETAILS."iPhone-12".jobNumber=$git_run' lab_info.json > lab_info.json.tmp && mv lab_info.json.tmp lab_info.json if [ ${{ needs.vars.outputs.existing_controller }} != '' ] then jq '.CONFIGURATION.interop.controller.url="https://sec-${{ needs.vars.outputs.existing_controller }}.cicd.lab.wlan.tip.build:16001"' lab_info.json > lab_info.json.tmp && mv lab_info.json.tmp lab_info.json fi - name: run tests uses: ./.github/actions/run-tests with: namespace: interop-${{ github.run_id }}-iphone-12 testbed: interop marker_expression: "${{ needs.vars.outputs.marker_overwrite || 'ow_sanity_interop and ios' }}" configuration_file: "./lab_info.json" testing_docker_image: tip-tip-wlan-cloud-docker-repo.jfrog.io/cloud-sdk-nightly:${{ github.run_id }} additional_args: "--device='iPhone-12' --skip-lanforge" allure_results_artifact_name: allure-results-iphone-12 # necessary because if conditionals in composite actions are currently not respected - name: get tests logs if: always() continue-on-error: true run: | podname=$(kubectl get pods -n interop-${{ github.run_id }}-iphone-12 --no-headers -o custom-columns=":metadata.name" -l job-name=testing | sed "s/pod\///") kubectl logs --timestamps -n interop-${{ github.run_id }}-iphone-12 $podname || true - name: delete namespace if: always() continue-on-error: true run: kubectl delete ns --ignore-not-found=true --wait interop-${{ github.run_id }}-iphone-12 report: needs: [vars, test-iphone-11, test-iphone-xr, test-iphone-12, test-iphone-7] if: "!cancelled()" runs-on: ubuntu-latest strategy: fail-fast: false matrix: device: ${{ fromJson( needs.vars.outputs.devices ) }} steps: - name: checkout testing repo uses: actions/checkout@v3 - uses: actions/download-artifact@v3 with: name: allure-results-${{ matrix.device }} path: allure-results - name: download history of previous run continue-on-error: true run: | LAST_RUN_ID=$(aws s3api head-object --bucket openwifi-allure-reports --key interop/${{ matrix.device }}/latest/index.html | jq -r .Metadata.latest) aws s3 cp --recursive s3://openwifi-allure-reports/interop/${{ matrix.device }}/$LAST_RUN_ID/history history - name: generate Allure report uses: ./.github/actions/generate-allure-report with: results_path: ./allure-results history_path: ./history additional_metadata: | Device=${{ matrix.device }} - name: upload Allure report as artifact uses: actions/upload-artifact@v3 with: name: allure-report-${{ matrix.device }} path: allure-report # doing this to be able to aggregate multiple reports together later on - name: copy results into report run: cp -r allure-results allure-report/results - name: upload to S3 if: github.ref == 'refs/heads/master' && needs.vars.outputs.marker_overwrite == '' uses: ./.github/actions/allure-report-to-s3 with: test_type: interop testbed: ${{ matrix.device }} report_path: allure-report s3_access_key_id: ${{ secrets.ALLURE_S3_ACCESS_KEY_ID }} s3_access_key_secret: ${{ secrets.ALLURE_S3_ACCESS_KEY_SECRET }} cleanup: needs: [quali_reservation, test-iphone-11, test-iphone-xr, test-iphone-12, test-iphone-7] 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 }} - name: install dependencies run: | pip install -r .quali/requirements.txt - name: get EKS access credentials run: aws eks update-kubeconfig --name ${{ env.AWS_EKS_NAME }} # TODO WIFI-7839 delete when issue is resolved on AWS CLI side - name: install kubectl run: | curl -LO "https://dl.k8s.io/release/v1.23.6/bin/linux/amd64/kubectl" sudo install -o root -g root -m 0755 kubectl /usr/local/bin/kubectl - name: stop reservation if: always() run: python .quali/stop_reservation.py ${{ needs.quali_reservation.outputs.identifier}} env: CLOUDSHELL_URL: quali-cloudshell.lab.wlan.tip.build CLOUDSHELL_USER: ${{ secrets.CLOUDSHELL_USER }} CLOUDSHELL_PASSWORD: ${{ secrets.CLOUDSHELL_PASSWORD }}