Additional X.509 Behavior Compatability Tests #6455
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: Integration tests | |
| on: | |
| push: | |
| branches: [ '*' ] | |
| pull_request: | |
| branches: [ '*' ] | |
| concurrency: | |
| group: ${{ github.workflow }}-${{ github.ref_name }} | |
| cancel-in-progress: true | |
| env: | |
| CC: gcc | |
| jobs: | |
| libssh2: | |
| if: github.repository_owner == 'aws' | |
| runs-on: ubuntu-latest | |
| steps: | |
| - name: Install OS Dependencies | |
| run: | | |
| sudo apt-get update -o Acquire::Languages=none -o Acquire::Translation=none | |
| sudo apt-get -y --no-install-recommends install cmake gcc ninja-build golang make | |
| - uses: actions/checkout@v4 | |
| - name: Run libssh2 integration tests | |
| run: | | |
| ./tests/ci/integration/run_libssh2_integration.sh | |
| libevent: | |
| if: github.repository_owner == 'aws' | |
| runs-on: ubuntu-latest | |
| steps: | |
| - name: Install OS Dependencies | |
| run: | | |
| sudo apt-get update -o Acquire::Languages=none -o Acquire::Translation=none | |
| sudo apt-get -y --no-install-recommends install \ | |
| cmake gcc ninja-build golang | |
| - uses: actions/checkout@v4 | |
| - name: Run libevent build | |
| run: | | |
| ./tests/ci/integration/run_libevent_integration.sh | |
| librdkafka: | |
| if: github.repository_owner == 'aws' | |
| runs-on: ubuntu-latest | |
| steps: | |
| - name: Install OS Dependencies | |
| run: | | |
| sudo apt-get update -o Acquire::Languages=none -o Acquire::Translation=none | |
| sudo apt-get -y --no-install-recommends install \ | |
| cmake gcc ninja-build golang | |
| - uses: actions/checkout@v4 | |
| - name: Run librdkafka build | |
| run: | | |
| ./tests/ci/integration/run_librdkafka_integration.sh | |