feat: add per-message handshake timing instrumentation (#5903) #11506
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: OpenBSD | |
| on: | |
| push: | |
| branches: [main] | |
| pull_request: | |
| branches: [main] | |
| merge_group: | |
| types: [checks_requested] | |
| branches: [main] | |
| permissions: | |
| contents: read | |
| jobs: | |
| testopenbsd: | |
| runs-on: ubuntu-latest | |
| name: CI OpenBSD | |
| steps: | |
| - uses: actions/checkout@v7 | |
| - name: Build and test in OpenBSD | |
| id: test | |
| uses: cross-platform-actions/action@v1.3.0 | |
| with: | |
| operating_system: openbsd | |
| architecture: x86-64 | |
| version: '7.9' | |
| cpu_count: 4 | |
| shell: bash | |
| run: | | |
| sudo sh -c 'echo "https://cdn.openbsd.org/pub/OpenBSD" > /etc/installurl' | |
| sudo pkg_add ninja cmake | |
| pkg_info | |
| sysctl -n kern.version | |
| .github/s2n_bsd.sh | |
| - name: upload test results | |
| if: ${{ failure() }} | |
| uses: actions/upload-artifact@master | |
| with: | |
| name: all_test_output | |
| path: | | |
| output |