feat(dsa): add from_der to EdDSA signature #2473
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
| # Runs build related jobs. | |
| name: build | |
| # Limits workflow concurrency to only the latest commit in the PR. | |
| concurrency: | |
| group: "${{ github.workflow }} @ ${{ github.event.pull_request.head.label || github.head_ref || github.ref }}" | |
| cancel-in-progress: true | |
| on: | |
| push: | |
| branches: [main, next] | |
| pull_request: | |
| types: [opened, reopened, synchronize] | |
| permissions: | |
| contents: read | |
| jobs: | |
| no-std: | |
| name: Build for no-std | |
| runs-on: ubuntu-latest | |
| strategy: | |
| fail-fast: false | |
| matrix: | |
| toolchain: [stable, nightly] | |
| steps: | |
| - uses: actions/checkout@main | |
| - name: Cleanup large tools for build space | |
| uses: ./.github/actions/cleanup-runner | |
| - name: Build for no-std | |
| run: | | |
| rustup update --no-self-update ${{ matrix.toolchain }} | |
| rustup default ${{ matrix.toolchain }} | |
| rustup target add wasm32-unknown-unknown | |
| make build-no-std | |
| target-miden: | |
| name: Build miden-field for on-chain target | |
| runs-on: ubuntu-latest | |
| strategy: | |
| fail-fast: false | |
| matrix: | |
| toolchain: [stable, nightly] | |
| steps: | |
| - uses: actions/checkout@main | |
| - name: Cleanup large tools for build space | |
| uses: ./.github/actions/cleanup-runner | |
| - name: Build miden-field for on-chain target | |
| run: | | |
| rustup update --no-self-update ${{ matrix.toolchain }} | |
| rustup default ${{ matrix.toolchain }} | |
| rustup target add wasm32-wasip2 | |
| make build-target-miden |