Integration tests (libssh, httpd, bind) #57
Workflow file for this run
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: ["main"] | |
pull_request: | |
branches: ["main"] | |
jobs: | |
libssh: | |
runs-on: ubuntu-22.04 | |
container: docker.io/dokken/fedora-40 | |
steps: | |
- name: Checkout Repository | |
uses: actions/checkout@v4 | |
- name: Install Build Requirements | |
run: | | |
dnf -y install git autoconf autoconf-archive automake libtool \ | |
openssl-devel | |
- name: Setup, Build and Install pkcs11-provider | |
run: | | |
autoreconf -fiv | |
./configure --libdir=/usr/lib64 | |
make | |
make install | |
- name: Test | |
run: | | |
export PKCS11_MODULE=/usr/lib64/ossl-modules/pkcs11.so | |
pushd tests/integration | |
bash -e libssh.sh | |
httpd: | |
runs-on: ubuntu-22.04 | |
# TODO: Change to fedora:latest once F40 is released | |
container: docker.io/dokken/fedora-40 | |
steps: | |
- name: Checkout Repository | |
uses: actions/checkout@v4 | |
- name: Install Build Requirements | |
run: | | |
dnf -y install autoconf autoconf-archive automake libtool \ | |
openssl-devel | |
- name: Setup, Build and Install pkcs11-provider | |
run: | | |
autoreconf -fiv | |
./configure --libdir=/usr/lib64 | |
make | |
make install | |
- name: Test | |
run: | | |
export PKCS11_MODULE=/usr/lib64/ossl-modules/pkcs11.so | |
pushd tests/integration | |
bash -e httpd.sh | |
bind: | |
runs-on: ubuntu-22.04 | |
# TODO: Change to fedora:latest once F40 is released | |
container: docker.io/dokken/fedora-40 | |
steps: | |
- name: Checkout Repository | |
uses: actions/checkout@v4 | |
- name: Install Build Requirements | |
run: | | |
dnf -y install autoconf autoconf-archive automake libtool \ | |
openssl-devel | |
- name: Setup, Build and Install pkcs11-provider | |
run: | | |
autoreconf -fiv | |
./configure --libdir=/usr/lib64 | |
make | |
make install | |
- name: Test | |
run: | | |
export PKCS11_MODULE=/usr/lib64/ossl-modules/pkcs11.so | |
pushd tests/integration | |
bash -e bind.sh |