name: code_coverage env: CARGO_TERM_COLOR: always ACTION_RUN_URL: ${{ github.server_url }}/${{ github.repository }}/actions/runs/${{ github.run_id }} RUSTFLAGS: "-C target-cpu=native" RUST_BACKTRACE: "full" RUST_MIN_STACK: "8388608" SLACK_CHANNEL: ${{ secrets.SLACK_CHANNEL }} SLACK_ICON: https://pbs.twimg.com/profile_images/1274014582265298945/OjBKP9kn_400x400.png SLACK_USERNAME: ${{ secrets.BOT_USERNAME }} SLACK_WEBHOOK: ${{ secrets.SLACK_WEBHOOK }} CHECKOUT_TOKEN: ${{ secrets.REPO_CHECKOUT_TOKEN || secrets.GITHUB_TOKEN }} on: # Allows you to run this workflow manually from the Actions tab as an alternative. workflow_dispatch: # Code coverage workflow is only run via workflow_dispatch event since execution duration is not stabilized yet. permissions: contents: read # zizmor: ignore[concurrency-limits] only Zama organization members can trigger this workflow jobs: setup-instance: name: code_coverage/setup-instance runs-on: ubuntu-latest outputs: runner-name: ${{ steps.start-instance.outputs.label }} steps: - name: Start instance id: start-instance uses: zama-ai/slab-github-runner@973c1d22702de8d0acd2b34e83404c96ed92c264 # v1.4.2 with: mode: start github-token: ${{ secrets.SLAB_ACTION_TOKEN }} slab-url: ${{ secrets.SLAB_BASE_URL }} job-secret: ${{ secrets.JOB_SECRET }} backend: aws profile: cpu-small code-coverage-tests: name: code_coverage/code-coverage-tests needs: setup-instance concurrency: group: ${{ github.workflow_ref }}_${{ github.event_name }} cancel-in-progress: true runs-on: ${{ needs.setup-instance.outputs.runner-name }} timeout-minutes: 5760 # 4 days steps: - name: Checkout tfhe-rs uses: actions/checkout@8e8c483db84b4bee98b60c0593521ed34d9990e8 with: persist-credentials: 'false' token: ${{ env.CHECKOUT_TOKEN }} - name: Install latest stable uses: dtolnay/rust-toolchain@e97e2d8cc328f1b50210efc529dca0028893a2d9 # zizmor: ignore[stale-action-refs] this action doesn't create releases with: toolchain: stable - name: Check for file changes id: changed-files uses: tj-actions/changed-files@24d32ffd492484c1d75e0c0b894501ddb9d30d62 # v47.0.0 with: files_yaml: | tfhe: - tfhe/src/** tfhe_csprng: - tfhe-csprng/src/** - name: Generate Keys if: steps.changed-files.outputs.tfhe_any_changed == 'true' run: | make GEN_KEY_CACHE_COVERAGE_ONLY=TRUE gen_key_cache make gen_key_cache_core_crypto - name: Run coverage for core_crypto if: steps.changed-files.outputs.tfhe_any_changed == 'true' run: | make test_core_crypto_cov AVX512_SUPPORT=ON - name: Run coverage for boolean if: steps.changed-files.outputs.tfhe_any_changed == 'true' run: | make test_boolean_cov - name: Run coverage for shortint if: steps.changed-files.outputs.tfhe_any_changed == 'true' run: | make test_shortint_cov - name: Upload tfhe coverage to Codecov uses: codecov/codecov-action@5a1091511ad55cbe89839c7260b706298ca349f7 if: steps.changed-files.outputs.tfhe_any_changed == 'true' with: token: ${{ secrets.CODECOV_TOKEN }} directory: ./coverage/ fail_ci_if_error: true files: shortint/cobertura.xml,boolean/cobertura.xml,core_crypto/cobertura.xml,core_crypto_avx512/cobertura.xml - name: Run integer coverage if: steps.changed-files.outputs.tfhe_any_changed == 'true' run: | make test_integer_cov - name: Upload tfhe coverage to Codecov uses: codecov/codecov-action@5a1091511ad55cbe89839c7260b706298ca349f7 if: steps.changed-files.outputs.tfhe_any_changed == 'true' with: token: ${{ secrets.CODECOV_TOKEN }} directory: ./coverage/ fail_ci_if_error: true files: integer/cobertura.xml - name: Slack Notification if: ${{ failure() || (cancelled() && github.event_name != 'pull_request') }} continue-on-error: true uses: rtCamp/action-slack-notify@e31e87e03dd19038e411e38ae27cbad084a90661 env: SLACK_COLOR: ${{ job.status }} SLACK_MESSAGE: "Code coverage finished with status: ${{ job.status }}. (${{ env.ACTION_RUN_URL }})" teardown-instance: name: code_coverage/teardown-instance if: ${{ always() && needs.setup-instance.result == 'success' }} needs: [ setup-instance, code-coverage-tests ] runs-on: ubuntu-latest steps: - name: Stop instance id: stop-instance uses: zama-ai/slab-github-runner@973c1d22702de8d0acd2b34e83404c96ed92c264 # v1.4.2 with: mode: stop github-token: ${{ secrets.SLAB_ACTION_TOKEN }} slab-url: ${{ secrets.SLAB_BASE_URL }} job-secret: ${{ secrets.JOB_SECRET }} label: ${{ needs.setup-instance.outputs.runner-name }} - name: Slack Notification if: ${{ failure() }} uses: rtCamp/action-slack-notify@e31e87e03dd19038e411e38ae27cbad084a90661 env: SLACK_COLOR: ${{ job.status }} SLACK_MESSAGE: "Instance teardown (code-coverage-tests) finished with status: ${{ job.status }}. (${{ env.ACTION_RUN_URL }})"