Skip to content

Commit

Permalink
Merge pull request #1273 from ksologubov/SDL-0234-Proxy-Library-RPC-G…
Browse files Browse the repository at this point in the history
…eneration

[SDL-0234] Proxy Library RPC Generation
  • Loading branch information
bilal-alsharifi committed Apr 23, 2020
2 parents e1b059a + 350709d commit 988784f
Show file tree
Hide file tree
Showing 29 changed files with 3,219 additions and 4 deletions.
13 changes: 10 additions & 3 deletions .github/workflows/android.yml
Expand Up @@ -9,7 +9,9 @@ jobs:

- name: Checkout
uses: actions/checkout@v2

with:
submodules: true

- name: Setup JDK
uses: actions/setup-java@v1
with:
Expand All @@ -33,8 +35,13 @@ jobs:

- name: Sdl JavaEE Tests
run: ./javaEE/gradlew -p ./javaEE test


- name: RPC Generator Tests
run: |
python3 -m pip install -r ./generator/requirements.txt
python3 ./generator/test/runner.py
- name: Codecov
uses: codecov/codecov-action@v1.0.6
with:
with:
yml: ./codecov.yml
9 changes: 9 additions & 0 deletions .gitignore
Expand Up @@ -76,3 +76,12 @@ build/
gradle/
gradlew
gradlew.bat

##############################
# Python
##############################
*.venv*
*__pycache__
*htmlcov
*.coverage
*.pytest_cache
4 changes: 4 additions & 0 deletions .gitmodules
@@ -0,0 +1,4 @@
[submodule "generator/rpc_spec"]
path = generator/rpc_spec
url = https://github.com/smartdevicelink/rpc_spec.git
branch = develop

0 comments on commit 988784f

Please sign in to comment.