Removed win 2019 builds since github runner has no more support (#1345) #180
This file contains hidden or 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
| name: Code coverage report to Codecov | |
| on: | |
| push: | |
| branches: | |
| - master | |
| jobs: | |
| coverage: | |
| runs-on: ubuntu-latest | |
| name: Create and upload coverage | |
| steps: | |
| - name: Checkout code | |
| uses: actions/checkout@v5 | |
| - uses: ./.github/actions/coverage-report | |
| with: | |
| GH_TOKEN: ${{ secrets.GH_TOKEN }} | |
| BOOST_VERSION: 1.89.0 | |
| THRIFT_VERSION: 0.13.0 | |
| RUN_TESTS: true | |
| HAZELCAST_ENTERPRISE_KEY: ${{ secrets.HAZELCAST_ENTERPRISE_KEY }} | |
| AWS_ACCESS_KEY_ID: ${{ secrets.AWS_ACCESS_KEY_ID }} | |
| AWS_SECRET_ACCESS_KEY: ${{ secrets.AWS_SECRET_ACCESS_KEY }} | |
| HZ_TEST_AWS_INSTANCE_PRIVATE_IP: ${{ secrets.HZ_TEST_AWS_INSTANCE_PRIVATE_IP }} | |
| - name: Publish on Codecov | |
| uses: codecov/codecov-action@v5 | |
| with: | |
| token: ${{ secrets.CODECOV_TOKEN }} | |
| files: coverage.info | |
| fail_ci_if_error: true |