Skip to content

Commit

Permalink
test
Browse files Browse the repository at this point in the history
  • Loading branch information
marko-k0 committed Oct 11, 2024
1 parent 3540ced commit 0d18951
Showing 1 changed file with 14 additions and 1 deletion.
15 changes: 14 additions & 1 deletion .github/workflows-source/ci-main.yml
Original file line number Diff line number Diff line change
Expand Up @@ -401,7 +401,20 @@ jobs:
- name: Run Bazel Test Coverage
shell: bash
run: |
./ci/scripts/bazel-coverage.sh
# ./ci/scripts/bazel-coverage.sh
mkdir -p cov_html/
echo test >/cov_html/test.txt
- name: Configure AWS Credentials
uses: aws-actions/configure-aws-credentials@v4
with:
aws-access-key-id: ${{ secrets.AWS_ACCESS_KEY_ID }}
aws-secret-access-key: ${{ secrets.AWS_SECRET_ACCESS_KEY }}
aws-region: eu-central-1
- name: Upload COV report
shell: bash
run: |
rclone sync cov_html s3:dfinity-download-public/coverage/${CI_COMMIT_SHA}/ \
--s3-env-auth --progress
- name: Upload Test Coverage Report
uses: actions/upload-artifact@v4
with:
Expand Down

0 comments on commit 0d18951

Please sign in to comment.