-
Notifications
You must be signed in to change notification settings - Fork 85
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
Showing
546 changed files
with
8,975 additions
and
4,210 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 |
---|---|---|
|
@@ -5,13 +5,17 @@ on: | |
push: | ||
branches: [ master ] | ||
paths: | ||
- 'demo/android/Activity/rhino-activity-demo-app/build.gradle' | ||
- '.github/workflows/android-appcenter.yml' | ||
- 'demo/android/Activity/**' | ||
- 'resources/.test/**' | ||
- 'resources/audio_samples/**' | ||
pull_request: | ||
branches: [ master ] | ||
branches: [ master, 'v[0-9]+.[0-9]+' ] | ||
paths: | ||
- 'demo/android/Activity/rhino-activity-demo-app/build.gradle' | ||
- '.github/workflows/android-appcenter.yml' | ||
- 'demo/android/Activity/**' | ||
- 'resources/.test/**' | ||
- 'resources/audio_samples/**' | ||
|
||
defaults: | ||
run: | ||
|
@@ -23,7 +27,7 @@ jobs: | |
runs-on: ubuntu-latest | ||
|
||
steps: | ||
- uses: actions/checkout@v2 | ||
- uses: actions/checkout@v3 | ||
|
||
- name: Setup Node.js environment | ||
uses: actions/[email protected] | ||
|
@@ -32,10 +36,10 @@ jobs: | |
run: npm install -g appcenter-cli | ||
|
||
- name: set up JDK 11 | ||
uses: actions/setup-java@v2 | ||
uses: actions/setup-java@v3 | ||
with: | ||
java-version: '11' | ||
distribution: 'adopt' | ||
distribution: 'temurin' | ||
|
||
- name: Copy test_resources | ||
run: ./copy_test_resources.sh | ||
|
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 |
---|---|---|
|
@@ -5,17 +5,13 @@ on: | |
push: | ||
branches: [ master ] | ||
paths: | ||
- 'lib/android/**' | ||
- 'lib/common/**' | ||
- 'resources/contexts/android/**' | ||
- '.github/workflows/android-perf.yml' | ||
- 'demo/android/Activity/**/build.gradle' | ||
pull_request: | ||
branches: [ master ] | ||
branches: [ master, 'v[0-9]+.[0-9]+' ] | ||
paths: | ||
- 'lib/android/**' | ||
- 'lib/common/**' | ||
- 'resources/contexts/android/**' | ||
- '.github/workflows/android-perf.yml' | ||
- 'demo/android/Activity/**/build.gradle' | ||
|
||
defaults: | ||
run: | ||
|
@@ -33,10 +29,10 @@ jobs: | |
- device: single-android | ||
performanceThresholdSec: 0.2 | ||
- device: 32bit-android | ||
performanceThresholdSec: 0.4 | ||
performanceThresholdSec: 1.0 | ||
|
||
steps: | ||
- uses: actions/checkout@v2 | ||
- uses: actions/checkout@v3 | ||
|
||
- name: Setup Node.js environment | ||
uses: actions/[email protected] | ||
|
@@ -45,7 +41,7 @@ jobs: | |
run: npm install -g appcenter-cli | ||
|
||
- name: set up JDK 11 | ||
uses: actions/setup-java@v2 | ||
uses: actions/setup-java@v3 | ||
with: | ||
java-version: '11' | ||
distribution: 'adopt' | ||
|
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,39 @@ | ||
name: Angular Codestyle | ||
|
||
on: | ||
workflow_dispatch: | ||
push: | ||
branches: [ master ] | ||
paths: | ||
- '**/angular/*.js' | ||
- '**/angular/*.ts' | ||
- '.github/workflows/angular-codestyle.yml' | ||
pull_request: | ||
branches: [ master, 'v[0-9]+.[0-9]+' ] | ||
paths: | ||
- '**/angular/*.js' | ||
- '**/angular/*.ts' | ||
- '.github/workflows/angular-codestyle.yml' | ||
|
||
jobs: | ||
check-angular-codestyle: | ||
runs-on: ubuntu-latest | ||
|
||
steps: | ||
- uses: actions/checkout@v3 | ||
|
||
- name: Set up Node.js lts/* | ||
uses: actions/setup-node@v3 | ||
with: | ||
node-version: lts/* | ||
|
||
- name: Pre-build dependencies | ||
run: npm install yarn | ||
|
||
- name: Run Binding Linter | ||
run: yarn && yarn lint | ||
working-directory: binding/angular | ||
|
||
- name: Run Demo Linter | ||
run: yarn && yarn lint | ||
working-directory: demo/angular |
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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,36 @@ | ||
name: .NET Codestyle | ||
|
||
on: | ||
workflow_dispatch: | ||
push: | ||
branches: [ master ] | ||
paths: | ||
- 'binding/dotnet/**/*.cs' | ||
- 'demo/dotnet/**/*.cs' | ||
- '.github/workflows/dotnet-codestyle.yml' | ||
pull_request: | ||
branches: [ master, 'v[0-9]+.[0-9]+' ] | ||
paths: | ||
- 'binding/dotnet/**/*.cs' | ||
- 'demo/dotnet/**/*.cs' | ||
- '.github/workflows/dotnet-codestyle.yml' | ||
|
||
jobs: | ||
check-dotnet-codestyle: | ||
runs-on: ubuntu-latest | ||
|
||
steps: | ||
- uses: actions/checkout@v3 | ||
|
||
- name: Setup .NET 6.0 | ||
uses: actions/setup-dotnet@v3 | ||
with: | ||
dotnet-version: 6.0.x | ||
|
||
- name: Run Binding Codestyle | ||
run: dotnet format --verify-no-changes | ||
working-directory: binding/dotnet | ||
|
||
- name: Run Demo Codestyle | ||
run: dotnet format --verify-no-changes | ||
working-directory: demo/dotnet |
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.