Bump mio from 0.8.6 to 0.8.11 in /tests/ci/lambda #527
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: Integration tests | |
on: | |
push: | |
branches: [ '*' ] | |
pull_request: | |
branches: [ '*' ] | |
concurrency: | |
group: ${{ github.workflow }}-${{ github.event.pull_request.number }} | |
cancel-in-progress: true | |
env: | |
CC: gcc | |
jobs: | |
haproxy: | |
runs-on: ubuntu-latest | |
steps: | |
- name: Install OS Dependencies | |
run: | | |
sudo apt-get update | |
sudo apt-get -y --no-install-recommends install cmake gcc ninja-build golang make | |
- uses: actions/checkout@v3 | |
- name: Run integration build | |
run: | | |
./tests/ci/integration/run_haproxy_integration.sh | |
tpm2-tss: | |
runs-on: ubuntu-latest | |
steps: | |
- name: Install OS Dependencies | |
run: | | |
sudo apt-get update && sudo apt-get -y --no-install-recommends install cmake gcc ninja-build golang autoconf-archive libcmocka0 libcmocka-dev procps iproute2 build-essential git pkg-config gcc libtool automake libssl-dev uthash-dev autoconf doxygen libjson-c-dev libini-config-dev libcurl4-openssl-dev uuid-dev libltdl-dev libusb-1.0-0-dev libftdi-dev | |
- uses: actions/checkout@v3 | |
- name: Run integration build | |
run: | | |
./tests/ci/integration/run_tpm2_tss_integration.sh | |
grpc: | |
env: | |
DEBIAN_FRONTEND: noninteractive | |
TZ: Etc/UTC | |
runs-on: ubuntu-latest | |
container: | |
image: ubuntu:latest | |
options: --sysctl=net.ipv6.conf.all.disable_ipv6=0 | |
steps: | |
- name: Install OS Dependencies | |
run: | | |
apt-get update | |
apt-get -y --no-install-recommends install cmake gcc g++ ninja-build golang make python3 python3-sphinx autoconf libtool pkg-config git libc++-dev | |
- uses: actions/checkout@v3 | |
- name: Run integration build | |
run: | | |
./tests/ci/integration/run_grpc_integration.sh | |
tcpdump: | |
runs-on: ubuntu-latest | |
steps: | |
- name: Install OS Dependencies | |
run: | | |
sudo apt-get update | |
sudo apt-get -y --no-install-recommends install cmake gcc ninja-build golang make libpcap-dev binutils-dev | |
- uses: actions/checkout@v3 | |
- name: Run integration build | |
run: | | |
./tests/ci/integration/run_tcpdump_integration.sh | |
trousers: | |
runs-on: ubuntu-latest | |
steps: | |
- name: Install OS Dependencies | |
run: | | |
sudo apt-get update | |
sudo apt-get -y --no-install-recommends install cmake gcc ninja-build golang make | |
- uses: actions/checkout@v3 | |
- name: Run trousers build | |
run: | | |
./tests/ci/integration/run_trousers_integration.sh | |
ntp: | |
runs-on: ubuntu-latest | |
steps: | |
- name: Install OS Dependencies | |
run: | | |
sudo apt-get update | |
sudo apt-get -y --no-install-recommends install cmake gcc ninja-build golang make | |
- uses: actions/checkout@v3 | |
- name: Run ntp build | |
run: | | |
./tests/ci/integration/run_ntp_integration.sh | |
socat: | |
runs-on: ubuntu-latest | |
steps: | |
- name: Install OS Dependencies | |
run: | | |
sudo apt-get update && sudo apt-get -y --no-install-recommends install cmake gcc ninja-build golang make autoconf pkg-config openssl | |
- uses: actions/checkout@v3 | |
- name: Run integration build | |
run: | | |
./tests/ci/integration/run_socat_integration.sh | |
python-main: | |
runs-on: ubuntu-latest | |
steps: | |
- name: Install OS Dependencies | |
run: | | |
sudo apt-get update | |
sudo apt-get -y --no-install-recommends install cmake gcc ninja-build golang make | |
- uses: actions/checkout@v3 | |
- name: Build AWS-LC, build python, run tests | |
run: | | |
./tests/ci/integration/run_python_integration.sh main | |
python-releases: | |
runs-on: ubuntu-latest | |
steps: | |
- name: Install OS Dependencies | |
run: | | |
sudo apt-get update | |
sudo apt-get -y --no-install-recommends install cmake gcc ninja-build golang make | |
- uses: actions/checkout@v3 | |
- name: Build AWS-LC, build python, run tests | |
run: | | |
./tests/ci/integration/run_python_integration.sh 3.10 3.11 3.12 | |
bind9: | |
runs-on: ubuntu-latest | |
steps: | |
- name: Install OS Dependencies | |
run: | | |
sudo apt-get update | |
sudo apt-get -y --no-install-recommends install cmake gcc ninja-build golang make python3 python3-pytest autoconf pkg-config libcmocka-dev liburcu-dev libuv1-dev libnghttp2-dev libcap-dev libprotobuf-c-dev protobuf-c-compiler libfstrm-dev libjemalloc-dev | |
- uses: actions/checkout@v3 | |
- name: Run bind9 build | |
run: | | |
./tests/ci/integration/run_bind9_integration.sh |