-
Notifications
You must be signed in to change notification settings - Fork 554
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Added docs and reverted all testing data
yet to fix the ambiguity error with main calls
- Loading branch information
Showing
4 changed files
with
23 additions
and
19 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 |
---|---|---|
|
@@ -8,27 +8,27 @@ on: | |
pull_request: | ||
push: | ||
branches: | ||
# Push events on develop branch | ||
Push events on develop branch | ||
- develop | ||
|
||
concurrency: | ||
group: ${{ github.workflow }}-${{ github.ref }} | ||
cancel-in-progress: true | ||
|
||
jobs: | ||
# check_unit_tests_completed: | ||
# name: Check unit test completed | ||
# runs-on: ubuntu-latest | ||
# steps: | ||
# - name: Wait for unit tests to checks | ||
# uses: ArcticLampyrid/[email protected] | ||
# with: | ||
# workflow: unit_tests.yml | ||
# sha: auto | ||
check_unit_tests_completed: | ||
name: Check unit test completed | ||
runs-on: ubuntu-latest | ||
steps: | ||
- name: Wait for unit tests to checks | ||
uses: ArcticLampyrid/[email protected] | ||
with: | ||
workflow: unit_tests.yml | ||
sha: auto | ||
|
||
compute_changed_files: | ||
name: Compute changed files | ||
# needs: check_unit_tests_completed | ||
needs: check_unit_tests_completed | ||
runs-on: ubuntu-20.04 | ||
outputs: | ||
matrix: ${{ steps.compute-file-matrix.outputs.matrix }} | ||
|
@@ -247,12 +247,12 @@ jobs: | |
CHANGED_FILES: ${{ env.CHANGED_FILES }} | ||
run: | | ||
echo "CHANGED FILES: $CHANGED_FILES" | ||
bazel run //scripts:run_coverage -- $(pwd) $CHANGED_FILES --format=proto --processTimeout=15 | ||
bazel run //scripts:run_coverage -- $(pwd) $CHANGED_FILES --format=PROTO --processTimeout=15 | ||
- name: Upload Coverage Report Artifact | ||
uses: actions/upload-artifact@v4 | ||
with: | ||
name: coverage-report-${{ env.SHARD_NAME }} | ||
name: coverage-report-${{ env.SHARD_NAME }} # Saving with unique names to avoid conflict | ||
path: coverage_reports | ||
|
||
evaluate-code-coverage-reports: | ||
|
@@ -341,6 +341,6 @@ jobs: | |
if: ${{ needs.compute_changed_files.outputs.can_skip_files != 'true' && needs.code_coverage_run.result != 'success' }} | ||
run: exit 1 | ||
|
||
- name: Coverage Status pased | ||
- name: Coverage status passed | ||
if: ${{ needs.evaluate-code-coverage-reports.result != 'success' }} | ||
run: exit 1 |
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