Ed25519 support #699
Workflow file for this run
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: coverage | |
| on: | |
| push: | |
| branches: | |
| - main | |
| pull_request: | |
| schedule: | |
| - cron: "0 18 * * *" | |
| env: | |
| CARGO_TERM_COLOR: always | |
| jobs: | |
| build: | |
| strategy: | |
| matrix: | |
| include: | |
| - os: ubuntu-latest | |
| - os: macos-latest | |
| runs-on: ${{ matrix.os }} | |
| steps: | |
| - uses: actions/checkout@v4 | |
| with: | |
| submodules: true | |
| persist-credentials: false | |
| - name: Install stable toolchain | |
| uses: dtolnay/rust-toolchain@master | |
| with: | |
| toolchain: stable | |
| components: llvm-tools | |
| - name: Install valgrind on Linux | |
| if: runner.os == 'Linux' | |
| run: sudo apt-get update && sudo apt-get install -y valgrind | |
| - name: Install cargo-llvm-cov | |
| uses: taiki-e/install-action@cargo-llvm-cov | |
| - uses: actions/checkout@v4 | |
| if: runner.os == 'Linux' | |
| with: | |
| repository: ctz/intel-sde | |
| path: thirdparty/intel-sde | |
| persist-credentials: false | |
| - name: Set up Intel SDE | |
| if: runner.os == 'Linux' | |
| run: | | |
| echo "PATH=$(pwd)/thirdparty/intel-sde:$PATH" >> $GITHUB_ENV | |
| - name: Measure coverage | |
| run: ./admin/coverage --lcov --output-path final.info | |
| - name: Report to codecov.io | |
| uses: codecov/codecov-action@v5 | |
| with: | |
| files: final.info | |
| token: ${{ secrets.CODECOV_TOKEN }} |