mirror of
https://github.com/Telecominfraproject/wlan-cloud-analytics.git
synced 2026-01-27 02:22:21 +00:00
82 lines
2.8 KiB
YAML
82 lines
2.8 KiB
YAML
name: CI
|
|
|
|
on:
|
|
push:
|
|
paths-ignore:
|
|
- 'openapi/**'
|
|
- '**.md'
|
|
branches:
|
|
- main
|
|
- 'release/*'
|
|
tags:
|
|
- 'v*'
|
|
pull_request:
|
|
branches:
|
|
- main
|
|
|
|
defaults:
|
|
run:
|
|
shell: bash
|
|
|
|
jobs:
|
|
docker:
|
|
runs-on: ubuntu-20.04
|
|
env:
|
|
DOCKER_REGISTRY_URL: tip-tip-wlan-cloud-ucentral.jfrog.io
|
|
DOCKER_REGISTRY_USERNAME: ucentral
|
|
steps:
|
|
- name: Checkout actions repo
|
|
uses: actions/checkout@v2
|
|
with:
|
|
repository: Telecominfraproject/.github
|
|
path: github
|
|
|
|
- name: Build and push Docker image
|
|
uses: ./github/composite-actions/docker-image-build
|
|
with:
|
|
image_name: owanalytics
|
|
registry: tip-tip-wlan-cloud-ucentral.jfrog.io
|
|
registry_user: ucentral
|
|
registry_password: ${{ secrets.DOCKER_REGISTRY_PASSWORD }}
|
|
|
|
# TODO uncomment this when this service is ready for deployment to reduce Slack noise
|
|
# - 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
|
|
|
|
# TODO uncomment this when this service is added into docker-compose and helm deployment scripts in wlan-testing
|
|
# trigger-testing:
|
|
# if: startsWith(github.ref, 'refs/pull/')
|
|
# runs-on: ubuntu-latest
|
|
# needs: docker
|
|
# steps:
|
|
# - name: Get base branch name and set as output
|
|
# id: get_base_branch
|
|
# run: |
|
|
# echo ::set-output name=branch::$(echo ${GITHUB_BASE_REF##*/})
|
|
# echo ::set-output name=owgw_branch::$(echo ${GITHUB_BASE_REF##*/} | sed 's/main/master/g')
|
|
#
|
|
# - name: Checkout actions repo
|
|
# uses: actions/checkout@v2
|
|
# with:
|
|
# repository: Telecominfraproject/.github
|
|
# path: github
|
|
#
|
|
# - name: Trigger testing of OpenWifi Docker Compose deployment and wait for result
|
|
# uses: ./github/composite-actions/trigger-workflow-and-wait
|
|
# env:
|
|
# BASE_BRANCH: ${{ steps.get_base_branch.outputs.branch }}
|
|
# OWGW_BASE_BRANCH: ${{ steps.get_base_branch.outputs.owgw_branch }}
|
|
# with:
|
|
# owner: Telecominfraproject
|
|
# repo: wlan-testing
|
|
# workflow: ow_docker-compose.yml
|
|
# token: ${{ secrets.WLAN_TESTING_PAT }}
|
|
# ref: master
|
|
# inputs: '{"microservice": "all", "deployment_version": "${{ env.BASE_BRANCH }}", "owgw_version": "${{ env.OWGW_BASE_BRANCH }}", "owgwui_version": "${{ env.BASE_BRANCH }}", "owsec_version": "${{ env.BASE_BRANCH }}", "owfms_version": "${{ env.BASE_BRANCH }}", "owprov_version": "${{ env.BASE_BRANCH }}", "owprovui_version": "${{ env.BASE_BRANCH }}", "owanalytics_version": "${{ github.sha }}"}'
|