-
Notifications
You must be signed in to change notification settings - Fork 2
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 #177 from primer-io/jn/CHKT-986-workflows-update
Update workflows to support building and uploading to Appetize
- Loading branch information
Showing
38 changed files
with
264,633 additions
and
416 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,163 @@ | ||
name: Android | ||
|
||
on: pull_request | ||
|
||
jobs: | ||
android-distribute-to-appetize: | ||
runs-on: ubuntu-latest | ||
name: "Build and upload app to Appetize 🚀" | ||
steps: | ||
|
||
- name: Cancel previous jobs | ||
uses: styfle/[email protected] | ||
with: | ||
access_token: ${{ github.token }} | ||
|
||
- uses: actions/checkout@v3 | ||
|
||
- uses: ruby/setup-ruby@v1 | ||
with: | ||
ruby-version: "2.6" | ||
bundler-cache: true | ||
|
||
- uses: actions/setup-ruby@v1 | ||
with: | ||
ruby-version: '2.6' | ||
|
||
- uses: actions/setup-node@v3 | ||
with: | ||
node-version: 18 | ||
|
||
- name: Set legacy-peer-deps for npm config | ||
run: | | ||
npm config set legacy-peer-deps true | ||
- name: Add slack message builder | ||
run: | | ||
yarn add slack-message-builder | ||
- name: Install packages | ||
run: | | ||
yarn | ||
- name: Distribute the React Native Android app on Appetize and upload to BrowserStack 🚀 | ||
run: bundle exec fastlane android appetize_build_and_upload | ||
env: | ||
PR_NUMBER: ${{ github.event.pull_request.number }} | ||
SOURCE_BRANCH: ${{ github.head_ref }} | ||
APPETIZE_API_TOKEN: ${{ secrets.APPETIZE_API_TOKEN }} | ||
BROWSERSTACK_USERNAME: ${{secrets.BROWSERSTACK_USERNAME}} | ||
BROWSERSTACK_ACCESS_KEY: ${{secrets.BROWSERSTACK_ACCESS_KEY}} | ||
|
||
- name: Save Browserstack ID | ||
uses: actions/upload-artifact@v3 | ||
id: save_browserstack_id_step | ||
with: | ||
name: browserstack_id | ||
path: /var/tmp/browserstack_id.txt | ||
if-no-files-found: error | ||
|
||
- uses: peter-evans/find-comment@v2 | ||
if: ${{ success() }} | ||
id: find_comment | ||
with: | ||
issue-number: ${{ github.event.pull_request.number }} | ||
body-includes: Appetize Android link | ||
|
||
- uses: peter-evans/create-or-update-comment@v2 | ||
if: ${{ success() }} | ||
with: | ||
body: | | ||
Appetize Android link: ${{ env.APPETIZE_APP_URL }} | ||
edit-mode: replace | ||
comment-id: ${{ steps.find_comment.outputs.comment-id }} | ||
issue-number: ${{ github.event.pull_request.number }} | ||
token: ${{ secrets.GITHUB_TOKEN }} | ||
|
||
- name: Create Slack Success Summary Report | ||
if: ${{ success() && github.event.pull_request.base.ref == 'master' }} | ||
run: | | ||
node report-scripts/appetize-success-report-script.js createAppetizeSummaryReport ${{ github.head_ref || github.ref_name }} 'RN Android' | ||
- name: Slack Success Notification | ||
if: ${{ success() && github.event.pull_request.base.ref == 'master' }} | ||
uses: slackapi/[email protected] | ||
with: | ||
channel-id: ${{ secrets.SLACK_MOBILE_SDK_CHANNEL }} | ||
payload-file-path: '/var/tmp/appetize-success-link-summary.json' | ||
env: | ||
SLACK_BOT_TOKEN: ${{ secrets.SLACK_BOT_TOKEN }} | ||
|
||
- name: Create Slack Failure Summary Report | ||
if: ${{ failure() && github.event.pull_request.base.ref == 'master' }} | ||
run: | | ||
node report-scripts/appetize-failure-report-script.js createAppetizeSummaryReport ${{ github.head_ref || github.ref_name }} 'RN Android' | ||
- name: Slack Notification | ||
if: ${{ failure() && github.event.pull_request.base.ref == 'master' }} | ||
uses: slackapi/[email protected] | ||
with: | ||
channel-id: ${{ secrets.SLACK_MOBILE_SDK_CHANNEL }} | ||
payload-file-path: '/var/tmp/appetize-failure-link-summary.json' | ||
env: | ||
SLACK_BOT_TOKEN: ${{ secrets.SLACK_BOT_TOKEN }} | ||
|
||
android-test-via-browserstack: | ||
if: false # Re-enable when we have tests set up | ||
runs-on: ubuntu-latest | ||
name: "Test on BrowserStack" | ||
needs: android-distribute-to-appetize | ||
steps: | ||
- name: Clone and launch Browserstack tests via Appium 🧪 | ||
run: | | ||
git clone -b develop https://project_41483872_bot:[email protected]/primer-io/dx/mobile-appium-tests.git . | ||
env: | ||
GITLAB_TEMP_PATH: ${{ secrets.GITLAB_APPIUM_PULL_KEY }} | ||
|
||
- name: Retrieve Browserstack ID | ||
uses: actions/download-artifact@v3 | ||
with: | ||
name: browserstack_id | ||
path: /var/tmp | ||
|
||
- uses: actions/setup-node@v3 | ||
with: | ||
node-version: 18 | ||
|
||
- name: Add slack message builder | ||
run: | | ||
yarn add slack-message-builder | ||
- name: Install packages | ||
run: | | ||
npm install | ||
- name: Run Appium Test | ||
env: | ||
BROWSERSTACK_USERNAME: ${{secrets.BROWSERSTACK_USERNAME}} | ||
BROWSERSTACK_ACCESS_KEY: ${{secrets.BROWSERSTACK_ACCESS_KEY}} | ||
run: | | ||
export BROWSERSTACK_APP_ID=$(cat /var/tmp/browserstack_id.txt) | ||
npx wdio config/wdio.rn.android.bs.conf.js | ||
- name: Create Slack Failed Summary Report | ||
if: ${{ failure() && github.event.pull_request.base.ref == 'master' }} | ||
run: | | ||
node report-scripts/slack-failed-report-script.js createSlackFailedSummaryReport ${{ steps.slack.outputs.thread_ts }} | ||
env: | ||
BROWSERSTACK_USERNAME: ${{ secrets.BROWSERSTACK_USERNAME }} | ||
BROWSERSTACK_ACCESS_KEY: ${{ secrets.BROWSERSTACK_ACCESS_KEY }} | ||
|
||
- name: Post detailed summary to Slack channel thread | ||
if: ${{ failure() && github.event.pull_request.base.ref == 'master' }} | ||
id: slack_thread | ||
uses: slackapi/[email protected] | ||
with: | ||
channel-id: ${{ secrets.SLACK_MOBILE_SDK_CHANNEL }} | ||
payload-file-path: '/var/tmp/slack_failed_summary.json' | ||
env: | ||
SLACK_BOT_TOKEN: ${{ secrets.SLACK_BOT_TOKEN }} | ||
|
||
- name: Create and post Github summary | ||
if: ${{ success() || failure() }} | ||
run: | | ||
node report-scripts/github-tests-summary-script.js createGithubSummaryReport | ||
This file was deleted.
Oops, something went wrong.
Oops, something went wrong.