-
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.
* SWI-2096 Update Test Workflow * fix branches * migrate to 2 workflows * add branch logic * wf name and add branch logic to correct wf * revert to old job * remove logic to test * revert * fix slack notifications * fix slack notify
- Loading branch information
Showing
3 changed files
with
160 additions
and
49 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,88 @@ | ||
name: Test Main and Feature Branch Nightly | ||
on: | ||
schedule: | ||
- cron: "0 4 * * *" | ||
|
||
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 }} | ||
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 }} | ||
ATT_NUMBER: ${{ secrets.ATT_NUMBER }} | ||
T_MOBILE_NUMBER: ${{ secrets.T_MOBILE_NUMBER }} | ||
VZW_NUMBER: ${{ secrets.VZW_NUMBER }} | ||
|
||
jobs: | ||
test_main: | ||
name: Test Main Branch Nightly | ||
runs-on: ${{ matrix.os }} | ||
strategy: | ||
matrix: | ||
os: [windows-2022, windows-2019, ubuntu-20.04, ubuntu-22.04] | ||
java-version: ['8', '11'] | ||
distribution: ['zulu', 'temurin'] | ||
steps: | ||
- name: Checkout | ||
uses: actions/checkout@v3 | ||
with: | ||
ref: 'main' | ||
|
||
- name: Set up JDK | ||
uses: actions/setup-java@v3 | ||
with: | ||
distribution: ${{ matrix.distribution }} | ||
java-version: ${{ matrix.java-version }} | ||
|
||
- name: Test | ||
run: mvn -B package --file pom.xml | ||
|
||
test_feature: | ||
name: Test Feature Branch Nightly | ||
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@v3 | ||
with: | ||
ref: 'feature/openapi-generator-sdk' | ||
|
||
- name: Set up JDK | ||
uses: actions/setup-java@v3 | ||
with: | ||
distribution: ${{ matrix.distribution }} | ||
java-version: ${{ matrix.java-version }} | ||
|
||
- name: Test | ||
env: | ||
JAVA_VERSION: ${{ matrix.java-version }} | ||
RUNNER_OS: ${{ matrix.os }} | ||
OPERATING_SYSTEM: ${{ matrix.os }} | ||
DISTRIBUTION: ${{ matrix.distribution }} | ||
run: mvn -B package --file pom.xml | ||
|
||
notify_for_failures: | ||
name: Notify for Failures | ||
needs: [test_main, test_feature] | ||
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 |
---|---|---|
@@ -0,0 +1,72 @@ | ||
name: Test PR | ||
on: | ||
pull_request: | ||
|
||
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 }} | ||
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 }} | ||
ATT_NUMBER: ${{ secrets.ATT_NUMBER }} | ||
T_MOBILE_NUMBER: ${{ secrets.T_MOBILE_NUMBER }} | ||
VZW_NUMBER: ${{ secrets.VZW_NUMBER }} | ||
|
||
jobs: | ||
test_pr_main: | ||
name: Test PR to Main Branch | ||
runs-on: ${{ matrix.os }} | ||
if: github.base_ref == 'main' | ||
strategy: | ||
matrix: | ||
os: [windows-2022, windows-2019, ubuntu-20.04, ubuntu-22.04] | ||
java-version: ['8', '11'] | ||
distribution: ['zulu', 'temurin'] | ||
steps: | ||
- name: Checkout | ||
uses: actions/checkout@v3 | ||
|
||
- name: Set up JDK | ||
uses: actions/setup-java@v3 | ||
with: | ||
distribution: ${{ matrix.distribution }} | ||
java-version: ${{ matrix.java-version }} | ||
|
||
- name: Test | ||
run: mvn -B package --file pom.xml | ||
|
||
test_feature: | ||
name: Test PR to Feature Branch | ||
runs-on: ${{ matrix.os }} | ||
if: github.base_ref == 'feature/openapi-generator-sdk' | ||
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@v3 | ||
|
||
- name: Set up JDK | ||
uses: actions/setup-java@v3 | ||
with: | ||
distribution: ${{ matrix.distribution }} | ||
java-version: ${{ matrix.java-version }} | ||
|
||
- name: Test | ||
env: | ||
JAVA_VERSION: ${{ matrix.java-version }} | ||
RUNNER_OS: ${{ matrix.os }} | ||
OPERATING_SYSTEM: ${{ matrix.os }} | ||
DISTRIBUTION: ${{ matrix.distribution }} | ||
run: mvn -B package --file pom.xml |
This file was deleted.
Oops, something went wrong.