-
-
Notifications
You must be signed in to change notification settings - Fork 211
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #1541 from robstoll/codecov
deactivate jacoco_additional until fix is found
- Loading branch information
Showing
5 changed files
with
30 additions
and
24 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 |
---|---|---|
@@ -1,5 +1,5 @@ | ||
ignore: | ||
- "misc/specs" | ||
- "misc/atrium-specs" | ||
- "misc/tools" | ||
- "samples" | ||
|
||
|
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 |
---|---|---|
|
@@ -25,6 +25,17 @@ jobs: | |
- name: "build using jdk ${{ matrix.java_version }}" | ||
run: ./gradlew build | ||
|
||
- name: Upload build code coverage | ||
uses: codecov/[email protected] | ||
if: ${{ github.event_name == 'pull_request' || (github.event_name == 'push' && github.ref == 'refs/heads/main') }} | ||
|
||
with: | ||
token: ${{ secrets.CODECOV_TOKEN }} | ||
flags: current | ||
env_vars: JAVA_VERSION | ||
# too many timeout errors, let's not fail at the moment | ||
#fail_ci_if_error: true | ||
|
||
- name: Cache android jar | ||
id: android-cache | ||
uses: actions/cache@v3 | ||
|
@@ -50,21 +61,11 @@ jobs: | |
- name: check Atrium's -jvm.jar can be dexed | ||
run: ATRIUM_ANDROID_JAR="$PWD/android-jar-cache/android.jar" ./gradlew checkDexer | ||
|
||
# TODO 1.3.0 re-activate scala API | ||
# TODO 1.5.0 re-activate scala API | ||
# - name: composite build atrium-scala2 | ||
# run: ./gradlew build | ||
# working-directory: misc/tools/atrium-scala2-test | ||
|
||
- name: Upload build code coverage | ||
uses: codecov/[email protected] | ||
if: ${{ github.event_name == 'pull_request' || (github.event_name == 'push' && github.ref == 'refs/heads/main') }} | ||
|
||
with: | ||
token: ${{ secrets.CODECOV_TOKEN }} | ||
flags: current | ||
env_vars: JAVA_VERSION | ||
# too many timeout errors, let's not fail at the moment | ||
#fail_ci_if_error: true | ||
|
||
- name: composite build atrium-samples-test | ||
run: ./gradlew build | ||
|
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 |
---|---|---|
|
@@ -24,11 +24,6 @@ jobs: | |
- name: "build using jdk ${{ matrix.java_version }}" | ||
run: ./gradlew build | ||
|
||
# TODO 1.5.0 re-activate scala API | ||
# - name: composite build atrium-scala2 | ||
# run: ./gradlew build | ||
# working-directory: misc\tools\atrium-scala2-test | ||
|
||
- name: Upload windows build code coverage | ||
uses: codecov/[email protected] | ||
if: ${{ github.event_name == 'pull_request' || (github.event_name == 'push' && github.ref == 'refs/heads/main') }} | ||
|
@@ -39,6 +34,11 @@ jobs: | |
# too many timeout errors, let's not fail at the moment | ||
#fail_ci_if_error: true | ||
|
||
# TODO 1.5.0 re-activate scala API | ||
# - name: composite build atrium-scala2 | ||
# run: ./gradlew build | ||
# working-directory: misc\tools\atrium-scala2-test | ||
|
||
- name: composite build atrium-samples-test | ||
run: ./gradlew build | ||
working-directory: misc\tools\atrium-samples-test | ||
|
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