-
Notifications
You must be signed in to change notification settings - Fork 59
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Upgrade FHIR SDK dependencies ⬆️ (#3423)
* Upgrade FHIR SDK dependencies ⬆️ * Replace JWT token parser library * Update Kujaku library version * Upgrade 3rd party dependencies * Refactor Knowledge Manager Resources Persistance * Refactor Cancel previous worflow to use native commands * Upgrade CI API level to 34 * Clean up gradle dependencies configuration * Move measure reporting evaluation to BG thread * Remove unrecommended forced portrait format * Clean up TOML catalog file * Refactor usage of FHIR JSONParser to support concurrency * Fix code coverage reporting * Fix build 💚
- Loading branch information
1 parent
3cb71f0
commit 53ca669
Showing
46 changed files
with
583 additions
and
522 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 |
---|---|---|
|
@@ -10,6 +10,10 @@ on: | |
merge_group: | ||
branches: [ main ] | ||
|
||
concurrency: | ||
group: ${{ github.workflow }}-${{ github.ref }} | ||
cancel-in-progress: true | ||
|
||
env: | ||
FHIRCORE_USERNAME: ${{ secrets.FHIRCORE_USERNAME }} | ||
FHIRCORE_ACCESS_TOKEN: ${{ secrets.FHIRCORE_ACCESS_TOKEN }} | ||
|
@@ -21,13 +25,9 @@ jobs: | |
runs-on: ubuntu-latest | ||
strategy: | ||
matrix: | ||
api-level: [30] | ||
api-level: [34] | ||
|
||
steps: | ||
- name: Cancel Previous workflow runs | ||
uses: styfle/[email protected] | ||
with: | ||
access_token: ${{ github.token }} | ||
|
||
- name: Checkout 🛎️ | ||
uses: actions/checkout@v4 | ||
|
||
|
@@ -106,21 +106,17 @@ jobs: | |
|
||
|
||
- name: Upload Engine module test coverage report to Codecov | ||
if: matrix.api-level == 30 # Only upload coverage on API level 30 | ||
if: matrix.api-level == 34 # Only upload coverage on API level 34 | ||
working-directory: android | ||
run: bash <(curl -s https://codecov.io/bash) -F engine -f "engine/build/reports/jacoco/fhircoreJacocoReport/fhircoreJacocoReport.xml" | ||
|
||
geowidget-tests: | ||
runs-on: ubuntu-latest | ||
strategy: | ||
matrix: | ||
api-level: [30] | ||
api-level: [34] | ||
|
||
steps: | ||
- name: Cancel Previous workflow runs | ||
uses: styfle/[email protected] | ||
with: | ||
access_token: ${{ github.token }} | ||
|
||
- name: Checkout 🛎️ | ||
uses: actions/checkout@v4 | ||
|
||
|
@@ -198,20 +194,17 @@ jobs: | |
path: android/geowidget/build/reports | ||
|
||
- name: Upload Geowidget module test coverage report to Codecov | ||
if: matrix.api-level == 30 # Only upload coverage on API level 30 | ||
if: matrix.api-level == 34 # Only upload coverage on API level 34 | ||
working-directory: android | ||
run: bash <(curl -s https://codecov.io/bash) -F geowidget -f "geowidget/build/reports/jacoco/fhircoreJacocoReport/fhircoreJacocoReport.xml" | ||
|
||
quest-tests: | ||
runs-on: ubuntu-latest | ||
strategy: | ||
matrix: | ||
api-level: [30] | ||
steps: | ||
- name: Cancel Previous workflow runs | ||
uses: styfle/[email protected] | ||
with: | ||
access_token: ${{ github.token }} | ||
api-level: [34] | ||
|
||
steps: | ||
- name: Checkout 🛎️ | ||
uses: actions/checkout@v4 | ||
|
||
|
@@ -315,6 +308,6 @@ jobs: | |
path: android/quest/build/reports | ||
|
||
- name: Upload Quest module test coverage report to Codecov | ||
if: matrix.api-level == 30 # Only upload coverage on API level 30 | ||
if: matrix.api-level == 34 # Only upload coverage on API level 34 | ||
working-directory: android | ||
run: bash <(curl -s https://codecov.io/bash) -F quest -f "quest/build/reports/jacoco/fhircoreJacocoReport/fhircoreJacocoReport.xml" | ||
run: bash <(curl -s https://codecov.io/bash) -F quest -f "quest/build/reports/jacoco/fhircoreJacocoReport/fhircoreJacocoReport.xml" |
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.