feat: support openssl from bcr #10
This file contains 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: bazel | |
on: [pull_request] | |
jobs: | |
test: | |
strategy: | |
matrix: | |
os: | |
- ubuntu-latest | |
- windows-latest | |
- macos-latest | |
runs-on: ${{ matrix.os }} | |
steps: | |
- uses: actions/checkout@v4 | |
- run: bazelisk test ... | |
working-directory: test | |
- run: bazelisk test ... [email protected]//:ssl=boringssl | |
working-directory: test | |
- run: bazelisk test ... [email protected]//:ssl=openssl | |
working-directory: test |