-
-
Notifications
You must be signed in to change notification settings - Fork 109
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
1 parent
70287d5
commit 23cb4d7
Showing
1 changed file
with
132 additions
and
132 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 |
---|---|---|
|
@@ -6,133 +6,133 @@ on: | |
- dashboard-ui | ||
|
||
jobs: | ||
buildWithSubmodule: | ||
name: Run Unit Test | ||
runs-on: macos-latest | ||
strategy: | ||
matrix: | ||
node: [20] | ||
|
||
steps: | ||
- name: Checkout repository with submodules | ||
uses: actions/checkout@v3 | ||
with: | ||
submodules: recursive | ||
token: ${{ secrets.PAT_TOKEN }} | ||
- name: Setup Java | ||
uses: actions/setup-java@v3 | ||
with: | ||
distribution: 'temurin' | ||
java-version: 17 | ||
|
||
- name: Setup Android SDK | ||
uses: android-actions/[email protected] | ||
- name: Run script | ||
run: | | ||
# Add your script commands here | ||
npm ci | ||
npm run bundle | ||
- name: Run Unit Test | ||
run: | | ||
# Add your script commands here | ||
npm test | ||
buildWithOutSubmodule: | ||
name: Build with Out Submodule | ||
runs-on: macos-latest | ||
strategy: | ||
matrix: | ||
node: [20] | ||
|
||
steps: | ||
- name: Checkout repository with out submodule | ||
uses: actions/checkout@v3 | ||
- name: Run script | ||
run: | | ||
npm ci | ||
npm run bundle | ||
AndroidIntegrationTest: | ||
name: Run Android Integration Test | ||
runs-on: ubuntu-latest | ||
strategy: | ||
matrix: | ||
api-level: [29] | ||
target: [google_apis] | ||
steps: | ||
- name: checkout | ||
uses: actions/checkout@v4 | ||
with: | ||
submodules: recursive | ||
token: ${{ secrets.PAT_TOKEN }} | ||
- name: Build | ||
run: | | ||
npm ci | ||
npm run bundle | ||
- name: Enable KVM | ||
run: | | ||
echo 'KERNEL=="kvm", GROUP="kvm", MODE="0666", OPTIONS+="static_node=kvm"' | sudo tee /etc/udev/rules.d/99-kvm4all.rules | ||
sudo udevadm control --reload-rules | ||
sudo udevadm trigger --name-match=kvm | ||
- name: run tests | ||
uses: reactivecircus/android-emulator-runner@v2 | ||
with: | ||
api-level: ${{ matrix.api-level }} | ||
target: ${{ matrix.target }} | ||
arch: x86_64 | ||
profile: Nexus 6 | ||
script: npm run integration-android | ||
IOSIntegrationTest: | ||
name: Run iOS Integration Test | ||
runs-on: macos-latest | ||
strategy: | ||
matrix: | ||
node: [ 20 ] | ||
|
||
steps: | ||
- name: Checkout repository with submodules | ||
uses: actions/checkout@v3 | ||
with: | ||
submodules: recursive | ||
token: ${{ secrets.PAT_TOKEN }} | ||
- name: Build | ||
run: | | ||
npm ci | ||
npm run bundle | ||
- name: Run iOS Integration Test | ||
run: | | ||
npm run integration-ios | ||
|
||
|
||
|
||
E2EPluginTest: | ||
name: Run Plugin Test | ||
runs-on: macos-latest | ||
strategy: | ||
matrix: | ||
node: [ 20 ] | ||
|
||
steps: | ||
- name: Checkout repository with submodules | ||
uses: actions/checkout@v3 | ||
with: | ||
submodules: recursive | ||
token: ${{ secrets.PAT_TOKEN }} | ||
- name: Build | ||
run: | | ||
npm ci | ||
npm run bundle | ||
- name: Run e2e plugin Test | ||
run: | | ||
npm run test-e2e | ||
- name: Run E2E BrowserStack Test | ||
run: | | ||
npm run test-e2e-browserstack | ||
- name: Run E2E PCloudy Test | ||
run: | | ||
npm run test-e2e-pcloudy | ||
# buildWithSubmodule: | ||
# name: Run Unit Test | ||
# runs-on: macos-latest | ||
# strategy: | ||
# matrix: | ||
# node: [20] | ||
# | ||
# steps: | ||
# - name: Checkout repository with submodules | ||
# uses: actions/checkout@v3 | ||
# with: | ||
# submodules: recursive | ||
# token: ${{ secrets.PAT_TOKEN }} | ||
# - name: Setup Java | ||
# uses: actions/setup-java@v3 | ||
# with: | ||
# distribution: 'temurin' | ||
# java-version: 17 | ||
# | ||
# - name: Setup Android SDK | ||
# uses: android-actions/[email protected] | ||
# - name: Run script | ||
# run: | | ||
# # Add your script commands here | ||
# npm ci | ||
# npm run bundle | ||
# - name: Run Unit Test | ||
# run: | | ||
# # Add your script commands here | ||
# npm test | ||
# | ||
# buildWithOutSubmodule: | ||
# name: Build with Out Submodule | ||
# runs-on: macos-latest | ||
# strategy: | ||
# matrix: | ||
# node: [20] | ||
# | ||
# steps: | ||
# - name: Checkout repository with out submodule | ||
# uses: actions/checkout@v3 | ||
# - name: Run script | ||
# run: | | ||
# npm ci | ||
# npm run bundle | ||
# AndroidIntegrationTest: | ||
# name: Run Android Integration Test | ||
# runs-on: ubuntu-latest | ||
# strategy: | ||
# matrix: | ||
# api-level: [29] | ||
# target: [google_apis] | ||
# steps: | ||
# - name: checkout | ||
# uses: actions/checkout@v4 | ||
# with: | ||
# submodules: recursive | ||
# token: ${{ secrets.PAT_TOKEN }} | ||
# - name: Build | ||
# run: | | ||
# npm ci | ||
# npm run bundle | ||
# | ||
# - name: Enable KVM | ||
# run: | | ||
# echo 'KERNEL=="kvm", GROUP="kvm", MODE="0666", OPTIONS+="static_node=kvm"' | sudo tee /etc/udev/rules.d/99-kvm4all.rules | ||
# sudo udevadm control --reload-rules | ||
# sudo udevadm trigger --name-match=kvm | ||
# | ||
# - name: run tests | ||
# uses: reactivecircus/android-emulator-runner@v2 | ||
# with: | ||
# api-level: ${{ matrix.api-level }} | ||
# target: ${{ matrix.target }} | ||
# arch: x86_64 | ||
# profile: Nexus 6 | ||
# script: npm run integration-android | ||
# IOSIntegrationTest: | ||
# name: Run iOS Integration Test | ||
# runs-on: macos-latest | ||
# strategy: | ||
# matrix: | ||
# node: [ 20 ] | ||
# | ||
# steps: | ||
# - name: Checkout repository with submodules | ||
# uses: actions/checkout@v3 | ||
# with: | ||
# submodules: recursive | ||
# token: ${{ secrets.PAT_TOKEN }} | ||
# - name: Build | ||
# run: | | ||
# npm ci | ||
# npm run bundle | ||
# - name: Run iOS Integration Test | ||
# run: | | ||
# npm run integration-ios | ||
# | ||
# | ||
# | ||
# | ||
# E2EPluginTest: | ||
# name: Run Plugin Test | ||
# runs-on: macos-latest | ||
# strategy: | ||
# matrix: | ||
# node: [ 20 ] | ||
# | ||
# steps: | ||
# - name: Checkout repository with submodules | ||
# uses: actions/checkout@v3 | ||
# with: | ||
# submodules: recursive | ||
# token: ${{ secrets.PAT_TOKEN }} | ||
# - name: Build | ||
# run: | | ||
# npm ci | ||
# npm run bundle | ||
# - name: Run e2e plugin Test | ||
# run: | | ||
# npm run test-e2e | ||
# - name: Run E2E BrowserStack Test | ||
# run: | | ||
# npm run test-e2e-browserstack | ||
# - name: Run E2E PCloudy Test | ||
# run: | | ||
# npm run test-e2e-pcloudy | ||
|
||
BrowserStackTest: | ||
runs-on: macos-latest | ||
|
@@ -152,8 +152,8 @@ jobs: | |
npm run bundle | ||
- name: Run BrowserStack Test | ||
run: | | ||
echo "${{ env.BS_USERNAME }}" | ||
export CLOUD_USERNAME=${{ env.BS_USERNAME }} | ||
export CLOUD_KEY=${{ env.BS_PASSWORD }} | ||
export BS_ANDROID_CLOUD_APP= ${{ env.BS_ANDROID_CLOUD_APP }} | ||
npm run test-parallel-bs | ||
echo ${{ env.BS_USERNAME }} | ||
# export CLOUD_USERNAME=${{ env.BS_USERNAME }} | ||
# export CLOUD_KEY=${{ env.BS_PASSWORD }} | ||
# export BS_ANDROID_CLOUD_APP= ${{ env.BS_ANDROID_CLOUD_APP }} | ||
# npm run test-parallel-bs |