-
Notifications
You must be signed in to change notification settings - Fork 0
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 #98 from Bandwidth/feature/openapi-generator-sdk
SWI-3612 Feature/openapi generator sdk to main
- Loading branch information
Showing
576 changed files
with
86,465 additions
and
35,331 deletions.
There are no files selected for viewing
This file was deleted.
Oops, something went wrong.
This file was deleted.
Oops, something went wrong.
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,61 @@ | ||
name: Test | ||
on: | ||
# schedule: | ||
# - cron: "0 4 * * *" | ||
pull_request: | ||
branches: | ||
- main | ||
- feature/* | ||
workflow_dispatch: | ||
|
||
jobs: | ||
test: | ||
name: Test | ||
runs-on: ${{ matrix.os }} | ||
strategy: | ||
matrix: | ||
os: [windows-2022, windows-2019, ubuntu-20.04, ubuntu-22.04] | ||
java-version: ["11", "17", "19"] | ||
distribution: ["zulu", "temurin"] | ||
steps: | ||
- name: Checkout | ||
uses: actions/checkout@v2 | ||
|
||
- name: Set up JDK | ||
uses: actions/setup-java@v3 | ||
with: | ||
distribution: ${{ matrix.distribution }} | ||
java-version: ${{ matrix.java-version }} | ||
|
||
- name: Test | ||
env: | ||
BW_ACCOUNT_ID: ${{ secrets.BW_ACCOUNT_ID }} | ||
BW_PASSWORD: ${{ secrets.BW_PASSWORD }} | ||
BW_USERNAME: ${{ secrets.BW_USERNAME }} | ||
BW_VOICE_APPLICATION_ID: ${{ secrets.BW_VOICE_APPLICATION_ID }} | ||
BW_MESSAGING_APPLICATION_ID: ${{ secrets.BW_MESSAGING_APPLICATION_ID }} | ||
BW_NUMBER: ${{ secrets.BW_NUMBER }} | ||
USER_NUMBER: ${{ secrets.USER_NUMBER }} | ||
BASE_CALLBACK_URL: ${{ secrets.BASE_CALLBACK_URL }} | ||
JAVA_VERSION: ${{ matrix.java-version }} | ||
RUNNER_OS: ${{ matrix.os }} | ||
BW_USERNAME_FORBIDDEN: ${{ secrets.BW_USERNAME_FORBIDDEN }} | ||
BW_PASSWORD_FORBIDDEN: ${{ secrets.BW_PASSWORD_FORBIDDEN }} | ||
MANTECA_IDLE_NUMBER: ${{ secrets.MANTECA_IDLE_NUMBER }} | ||
MANTECA_ACTIVE_NUMBER: ${{ secrets.MANTECA_ACTIVE_NUMBER }} | ||
MANTECA_APPLICATION_ID: ${{ secrets.MANTECA_APPLICATION_ID }} | ||
MANTECA_BASE_URL: ${{ secrets.MANTECA_BASE_URL }} | ||
OPERATING_SYSTEM: ${{ matrix.os }} | ||
DISTRIBUTION: ${{ matrix.distribution }} | ||
ATT_NUMBER: ${{ secrets.ATT_NUMBER }} | ||
T_MOBILE_NUMBER: ${{ secrets.T_MOBILE_NUMBER }} | ||
VZW_NUMBER: ${{ secrets.VZW_NUMBER }} | ||
run: mvn -B package --file pom.xml | ||
|
||
- name: Notify Slack of Failures | ||
uses: Bandwidth/[email protected] | ||
if: failure() && !github.event.pull_request.draft | ||
with: | ||
job-status: ${{ job.status }} | ||
slack-bot-token: ${{ secrets.SLACK_BOT_TOKEN }} | ||
slack-channel: ${{ secrets.SLACK_CHANNEL }} |
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,102 @@ | ||
name: Update SDK | ||
|
||
on: | ||
schedule: | ||
- cron: "0 14 * * 2" | ||
workflow_dispatch: | ||
|
||
jobs: | ||
update-sdk: | ||
name: Update SDK if Necessary | ||
runs-on: ubuntu-latest | ||
outputs: | ||
generate: ${{ steps.compare.outputs.generate }} | ||
steps: | ||
- name: Checkout | ||
uses: actions/checkout@v3 | ||
|
||
- name: Combine Product Specs | ||
uses: Bandwidth/[email protected] | ||
with: | ||
token: ${{ secrets.DX_GITHUB_TOKEN }} | ||
|
||
- name: Determine if a New SDK is Needed | ||
id: compare | ||
run: | | ||
if cmp -s "bandwidth.yml" "api-specs/bandwidth.yml"; then :; else mv -f api-specs/bandwidth.yml bandwidth.yml; rm -r -f api-specs; echo "generate=true" >> $GITHUB_OUTPUT; fi | ||
- name: Create JIRA Card for SDK Update | ||
if: ${{ steps.compare.outputs.generate == 'true' }} | ||
id: jira | ||
run: | | ||
JIRA_KEY=$(jq -r '.key' <<< $(curl -s -u $JIRA_USERNAME:$JIRA_TOKEN \ | ||
-X POST https://bandwidth-jira.atlassian.net/rest/api/2/issue \ | ||
-H "Content-Type: application/json" \ | ||
--data-binary @- << EOF | ||
{ | ||
"fields": { | ||
"project": { | ||
"key": "SWI" | ||
}, | ||
"summary": "[$LANGUAGE] Update SDK for New Spec Version", | ||
"description": "Prepare the $LANGUAGE SDK for release based on the latest spec changes.", | ||
"issuetype": { | ||
"name": "Story" | ||
}, | ||
"customfield_12108": "$LANGUAGE SDK is ready for release. Tests are created/updated if need be.", | ||
"customfield_10205": "$EPIC", | ||
"components": [{ | ||
"name": "Client SDKs" | ||
}] | ||
} | ||
} | ||
EOF | ||
)) | ||
echo "jira-key=$JIRA_KEY" >> $GITHUB_OUTPUT | ||
env: | ||
LANGUAGE: Java | ||
EPIC: SWI-1876 | ||
JIRA_USERNAME: ${{ secrets.JIRA_USERNAME }} | ||
JIRA_TOKEN: ${{ secrets.JIRA_TOKEN }} | ||
|
||
- name: Build SDK | ||
id: build | ||
if: ${{ startsWith(steps.jira.outputs.jira-key, 'SWI') }} | ||
uses: Bandwidth/[email protected] | ||
with: | ||
branch-name: ${{ steps.jira.outputs.jira-key }} | ||
token: ${{ secrets.DX_GITHUB_TOKEN }} | ||
openapi-generator-version: 7.0.0 | ||
language: java | ||
config: ./openapi-config.yml | ||
|
||
- name: Setup Java | ||
if: steps.build.outputs.changes | ||
uses: actions/setup-java@v3 | ||
with: | ||
java-version: 17 | ||
|
||
- name: Clean SDK | ||
if: steps.build.outputs.changes | ||
run: | | ||
mvn clean | ||
- name: Open Pull Request | ||
if: steps.build.outputs.changes | ||
run: | | ||
gh pr create -B main -H Bandwidth:${{ steps.jira.outputs.jira-key }} -t '${{ steps.jira.outputs.jira-key }} Update SDK Based on Recent Spec Changes' -b 'Auto-generated by Update SDK Workflow' | ||
env: | ||
GITHUB_TOKEN: ${{ secrets.DX_GITHUB_TOKEN }} | ||
|
||
notify_for_failures: | ||
name: Notify for Failures | ||
needs: [update-sdk] | ||
if: failure() | ||
runs-on: ubuntu-latest | ||
steps: | ||
- name: Notify Slack of Failures | ||
uses: Bandwidth/[email protected] | ||
with: | ||
job-status: failure | ||
slack-bot-token: ${{ secrets.SLACK_BOT_TOKEN }} | ||
slack-channel: ${{ secrets.SLACK_CHANNEL }} |
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 |
---|---|---|
@@ -1,20 +1,24 @@ | ||
#macOS system files | ||
.DS_Store | ||
*.class | ||
|
||
#IntelliJ IDE files | ||
.idea | ||
target | ||
# Mobile Tools for Java (J2ME) | ||
.mtj.tmp/ | ||
|
||
#Eclipse IDE files | ||
.classpath | ||
.project | ||
# Package Files # | ||
*.jar | ||
*.war | ||
*.ear | ||
|
||
*.iml | ||
*.class | ||
# exclude jar for gradle wrapper | ||
!gradle/wrapper/*.jar | ||
|
||
tempsettings.xml | ||
*.bin | ||
*.lock | ||
*.properties | ||
*.prefs | ||
.vscode/settings.json | ||
# virtual machine crash logs, see http://www.java.com/en/download/help/error_hotspot.xml | ||
hs_err_pid* | ||
|
||
# build files | ||
**/target | ||
target | ||
.gradle | ||
build | ||
|
||
.DS_Store | ||
.idea |
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,28 @@ | ||
# OpenAPI Generator Ignore | ||
# Generated by openapi-generator https://github.com/openapitools/openapi-generator | ||
|
||
# Use this file to prevent files from being overwritten by the generator. | ||
# The patterns follow closely to .gitignore or .dockerignore. | ||
|
||
# As an example, the C# client generator defines ApiClient.cs. | ||
# You can make changes and tell OpenAPI Generator to ignore just this file by uncommenting the following line: | ||
#ApiClient.cs | ||
|
||
pom.xml | ||
.idea | ||
.gitignore | ||
.github/workflows/maven.yml | ||
|
||
# You can match any string of characters against a directory, file or extension with a single asterisk (*): | ||
#foo/*/qux | ||
# The above matches foo/bar/qux and foo/baz/qux, but not foo/bar/baz/qux | ||
|
||
# You can recursively match patterns against a directory, file or extension with a double asterisk (**): | ||
#foo/**/qux | ||
# This matches foo/bar/qux, foo/baz/qux, and foo/bar/baz/qux | ||
|
||
# You can also negate patterns with an exclamation (!). | ||
# For example, you can ignore all files in a docs folder with the file extension .md: | ||
#docs/*.md | ||
# Then explicitly reverse the ignore rule for a single file: | ||
#!docs/README.md |
Oops, something went wrong.