-
Notifications
You must be signed in to change notification settings - Fork 33
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge branch 'release/v3.2.2' into main
- Loading branch information
Showing
17 changed files
with
284 additions
and
72 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
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,56 @@ | ||
name: Run Integration Tests | ||
|
||
on: | ||
push: | ||
branches: | ||
- main | ||
- develop | ||
- release/* | ||
jobs: | ||
runAllTests: | ||
name: ${{ matrix.unityVersion }} integration tests | ||
runs-on: ubuntu-latest | ||
timeout-minutes: 15 | ||
strategy: | ||
fail-fast: false | ||
matrix: | ||
testMode: | ||
- editmode | ||
unityVersion: | ||
- 2020.3.0f1 | ||
steps: | ||
- name: Checkout empty unity project repository | ||
uses: actions/checkout@v3 | ||
with: | ||
repository: "readyplayerme/rpm-unity-empty-project" | ||
fetch-depth: 0 | ||
ref: main | ||
token: ${{ secrets.DEV_SDK_TOKEN }} | ||
- name: Cache Project | ||
uses: actions/cache@v3 | ||
with: | ||
path: Library | ||
key: Library-${{ hashFiles('Assets/**', 'Packages/**', 'ProjectSettings/**') }} | ||
restore-keys: | | ||
Library- | ||
- name: Get npm | ||
uses: actions/setup-node@v3 | ||
with: | ||
node-version: 18 | ||
- name: Install openupm-cli | ||
run: npm install -g openupm-cli | ||
- name: Add core with current branch as package | ||
run: openupm add com.readyplayerme.core@https://github.com/readyplayerme/rpm-unity-sdk-core.git#${GITHUB_REF##*/} | ||
- name: Run Tests | ||
uses: game-ci/unity-test-runner@v2 | ||
env: | ||
UNITY_EMAIL: ${{ secrets.UNITY_EMAIL }} | ||
UNITY_PASSWORD: ${{ secrets.UNITY_PASSWORD }} | ||
UNITY_SERIAL: ${{ secrets.UNITY_SERIAL }} | ||
with: | ||
unityVersion: ${{ matrix.unityVersion }} | ||
testMode: ${{ matrix.testMode }} | ||
projectPath: ${{ matrix.projectPath }} | ||
checkName: ${{ matrix.unityVersion }} ${{ matrix.testMode }} tests result | ||
githubToken: ${{ secrets.GITHUB_TOKEN }} | ||
coverageOptions: "generateAdditionalMetrics;generateHtmlReport;generateBadgeReport;assemblyFilters:+my.assembly.*" |
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 |
---|---|---|
|
@@ -58,3 +58,5 @@ sysinfo.txt | |
# Crashlytics generated file | ||
crashlytics-build.properties | ||
|
||
|
||
.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
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
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
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
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
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
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
Oops, something went wrong.