-
Notifications
You must be signed in to change notification settings - Fork 3
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #63 from Telecominfraproject/next
CGW 1.0 release
- Loading branch information
Showing
153 changed files
with
18,529 additions
and
0 deletions.
There are no files selected for viewing
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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,76 @@ | ||
# | ||
name: CI | ||
|
||
on: | ||
push: | ||
paths-ignore: | ||
- '**.md' | ||
branches: | ||
- main | ||
- next | ||
- 'release/*' | ||
tags: | ||
- 'v*' | ||
pull_request: | ||
branches: | ||
- main | ||
- next | ||
- '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-dev: | ||
runs-on: ubuntu-latest | ||
#if: github.ref == 'refs/heads/main' | ||
if: github.ref == 'zzzzzzz' | ||
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: '{"just_component": "true"}' |
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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,15 @@ | ||
# Generated by Cargo | ||
# will have compiled files and executables | ||
debug/ | ||
target/ | ||
output/ | ||
|
||
# Remove Cargo.lock from gitignore if creating an executable, leave it for libraries | ||
# More information here https://doc.rust-lang.org/cargo/guide/cargo-toml-vs-cargo-lock.html | ||
Cargo.lock | ||
|
||
# These are backup files generated by rustfmt | ||
**/*.rs.bk | ||
|
||
# MSVC Windows builds of rustc generate these, which store debugging information | ||
*.pdb |
Oops, something went wrong.