mirror of
https://github.com/optim-enterprises-bv/openlan-cgw.git
synced 2026-01-10 17:31:27 +00:00
100 lines
2.9 KiB
YAML
100 lines
2.9 KiB
YAML
#
|
|
name: CI
|
|
|
|
on:
|
|
push:
|
|
paths-ignore:
|
|
- '**.md'
|
|
branches:
|
|
- main
|
|
- next
|
|
- test_scaling
|
|
- 'release/*'
|
|
tags:
|
|
- 'v*'
|
|
pull_request:
|
|
branches:
|
|
- main
|
|
- next
|
|
- test_scaling
|
|
- 'release/*'
|
|
|
|
defaults:
|
|
run:
|
|
shell: bash
|
|
|
|
jobs:
|
|
docker:
|
|
runs-on: ubuntu-latest
|
|
env:
|
|
DOCKER_REGISTRY_URL: tip-tip-wlan-cloud-ucentral.jfrog.io
|
|
DOCKER_REGISTRY_USERNAME: ucentral
|
|
steps:
|
|
- name: Checkout actions repo
|
|
uses: actions/checkout@v4
|
|
with:
|
|
repository: Telecominfraproject/.github
|
|
path: github
|
|
|
|
- name: Build and push Docker image
|
|
uses: ./github/composite-actions/docker-image-build
|
|
with:
|
|
image_name: cgw
|
|
registry: tip-tip-wlan-cloud-ucentral.jfrog.io
|
|
registry_user: ucentral
|
|
registry_password: ${{ secrets.DOCKER_REGISTRY_PASSWORD }}
|
|
|
|
- name: Notify on failure via Slack
|
|
if: failure() && github.ref == 'refs/heads/main'
|
|
uses: rtCamp/action-slack-notify@v2
|
|
env:
|
|
SLACK_USERNAME: GitHub Actions failure notifier
|
|
SLACK_WEBHOOK: ${{ secrets.SLACK_WEBHOOK }}
|
|
SLACK_COLOR: "${{ job.status }}"
|
|
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'
|
|
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": "main", "cgw_image": "main", "config_name": "cgw01", "namespace":"openlan-cgw01", "cluster": "tip-wlan-main", "region": "ap-south-1"}'
|