From fe10961e1309347db7b16b4630a587b8eb3e7e07 Mon Sep 17 00:00:00 2001 From: Carsten Schafer Date: Thu, 19 Sep 2024 12:11:46 -0400 Subject: [PATCH] WIFI-13821: Update CI Signed-off-by: Carsten Schafer --- .github/workflows/ci.yml | 29 ++++++++++++++++++++++++++--- 1 file changed, 26 insertions(+), 3 deletions(-) diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index 365ec2d..9a21b2d 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -8,6 +8,7 @@ on: branches: - main - next + - testing - 'release/*' tags: - 'v*' @@ -15,6 +16,7 @@ on: branches: - main - next + - testing - 'release/*' defaults: @@ -52,10 +54,31 @@ jobs: SLACK_ICON: https://raw.githubusercontent.com/quintessence/slack-icons/master/images/github-logo-slack-icon.png SLACK_TITLE: Docker build failed for OWGW service + trigger-deploy-to-qa: + runs-on: ubuntu-latest + if: github.ref == 'refs/heads/test_scaling' + needs: + - docker + steps: + - name: Checkout actions repo + uses: actions/checkout@v4 + with: + repository: Telecominfraproject/.github + path: github + + - name: Trigger deployment of the latest version to dev instance and wait for result + uses: ./github/composite-actions/trigger-workflow-and-wait + with: + owner: Telecominfraproject + repo: wlan-testing + workflow: cgw-dev-deployment.yaml + token: ${{ secrets.WLAN_TESTING_PAT }} + ref: master + inputs: '{"upgrade": "true", "cgw_version": "test_scaling", "cgw_image": "test_scaling", "config_name": "default", "namespace":"openwifi-devcgw", "cluster": "tip-wlan-qa", "region": "us-east-2"}' + trigger-deploy-to-dev: runs-on: ubuntu-latest - #if: github.ref == 'refs/heads/main' - if: github.ref == 'zzzzzzz' + if: github.ref == 'refs/heads/main' needs: - docker steps: @@ -73,4 +96,4 @@ jobs: workflow: cgw-dev-deployment.yaml token: ${{ secrets.WLAN_TESTING_PAT }} ref: master - inputs: '{"just_component": "true"}' + inputs: '{"upgrade": "true", "cgw_version": "main", "cgw_image": "main", "config_name": "cgw01", "namespace":"openlan-cgw01", "cluster": "tip-wlan-main", "region": "ap-south-1"}'