Implement RSA_check_fips() and EC_KEY_check_fips() in bssl-compat #817
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: OpenSSL testing | |
| permissions: | |
| contents: read | |
| on: | |
| pull_request: | |
| concurrency: | |
| group: ${{ github.workflow }}-${{ github.event.pull_request.number || github.ref }} | |
| cancel-in-progress: ${{ github.event_name == 'pull_request' }} | |
| jobs: | |
| openssl: | |
| runs-on: ubuntu-24.04 | |
| timeout-minutes: 180 | |
| permissions: | |
| contents: read | |
| packages: read | |
| if: >- | |
| ${{ github.repository == 'envoyproxy/envoy-openssl' }} | |
| steps: | |
| - name: Free disk space | |
| uses: envoyproxy/toolshed/gh-actions/diskspace@actions-v0.3.23 | |
| - uses: actions/checkout@11bd71901bbe5b1630ceea73d27597364c9af683 # v4.2.2 | |
| - run: | | |
| ./ci/run_envoy_docker.sh './ci/do_ci.sh gcc //test/...' | |
| env: | |
| BAZEL_BUILD_EXTRA_OPTIONS: >- | |
| --config=remote-envoy-engflow | |
| --config=bes-envoy-engflow | |
| --config=remote-ci | |
| ENVOY_RBE: 1 | |
| GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} |