Skip to content

Commit bcf6414

Browse files
Merge branch 'develop' into release/4.11-RC
2 parents 818b70e + 988784f commit bcf6414

29 files changed

Lines changed: 3219 additions & 4 deletions

.github/workflows/android.yml

Lines changed: 10 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,9 @@ jobs:
99

1010
- name: Checkout
1111
uses: actions/checkout@v2
12-
12+
with:
13+
submodules: true
14+
1315
- name: Setup JDK
1416
uses: actions/setup-java@v1
1517
with:
@@ -33,8 +35,13 @@ jobs:
3335

3436
- name: Sdl JavaEE Tests
3537
run: ./javaEE/gradlew -p ./javaEE test
36-
38+
39+
- name: RPC Generator Tests
40+
run: |
41+
python3 -m pip install -r ./generator/requirements.txt
42+
python3 ./generator/test/runner.py
43+
3744
- name: Codecov
3845
uses: codecov/codecov-action@v1.0.6
39-
with:
46+
with:
4047
yml: ./codecov.yml

.gitignore

Lines changed: 9 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -76,3 +76,12 @@ build/
7676
gradle/
7777
gradlew
7878
gradlew.bat
79+
80+
##############################
81+
# Python
82+
##############################
83+
*.venv*
84+
*__pycache__
85+
*htmlcov
86+
*.coverage
87+
*.pytest_cache

.gitmodules

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,4 @@
1+
[submodule "generator/rpc_spec"]
2+
path = generator/rpc_spec
3+
url = https://github.com/smartdevicelink/rpc_spec.git
4+
branch = develop

0 commit comments

Comments
 (0)