feat: SBOM generation and OmniBOR build provenance (CRA compliance) #600
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: wolfProvider cross-library | |
| # START OF COMMON SECTION | |
| on: | |
| push: | |
| branches: [ 'release/**' ] | |
| pull_request: | |
| types: [opened, synchronize, reopened, ready_for_review] | |
| branches: [ '*' ] | |
| concurrency: | |
| group: ${{ github.workflow }}-${{ github.ref }} | |
| cancel-in-progress: true | |
| permissions: | |
| contents: read | |
| # END OF COMMON SECTION | |
| jobs: | |
| cross-library: | |
| uses: ./.github/workflows/cross-library.yml | |
| with: | |
| product: wolfprovider | |
| repo: wolfSSL/wolfProvider | |
| # wolfProvider's documented wolfSSL build (see its scripts/utils-wolfssl.sh). | |
| wolfssl_configure: >- | |
| --enable-all-crypto --with-eccminsz=192 --with-max-ecc-bits=1024 | |
| --enable-opensslcoexist --enable-sha | |
| CFLAGS="-DWC_RSA_NO_PADDING -DWOLFSSL_PUBLIC_MP -DHAVE_PUBLIC_FFDHE -DHAVE_FFDHE_6144 -DHAVE_FFDHE_8192 -DWOLFSSL_PSS_LONG_SALT -DWOLFSSL_PSS_SALT_LEN_DISCOVER -DRSA_MIN_SIZE=1024 -DWOLFSSL_OLD_OID_SUM" | |
| product_configure: '' | |
| script: wolfprovider.sh | |
| apt_packages: libssl-dev |