Skip to content

Commit 87fdf5a

Browse files
committed
Added dst suppresion for test
1 parent a6b5bea commit 87fdf5a

File tree

2 files changed

+9
-7
lines changed

2 files changed

+9
-7
lines changed

.github/workflows/bind.yml

Lines changed: 4 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -126,9 +126,11 @@ jobs:
126126
autoreconf -ivf
127127
128128
# Configure with OpenSSL
129-
./configure --with-openssl=$GITHUB_WORKSPACE/openssl-install \
130-
--disable-dst-test
129+
./configure --with-openssl=$GITHUB_WORKSPACE/openssl-install
130+
131+
# Disable system tests and dst_test
131132
sed -i 's/SUBDIRS = system//g' bin/tests/Makefile
133+
sed -i 's/dst_test//g' lib/dns/tests/Makefile
132134
133135
# Build bind9
134136
make -j$(nproc) V=1

.github/workflows/openldap.yml

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -105,18 +105,18 @@ jobs:
105105
key: wolfprov-${{ matrix.wolfssl_ref }}-${{ github.sha }}
106106
fail-on-cache-miss: true
107107

108+
- name: Install dependencies
109+
run: |
110+
sudo apt-get update
111+
sudo apt-get install -y libsasl2-dev
112+
108113
- name: Checkout openldap
109114
uses: actions/checkout@v4
110115
with:
111116
repository: openldap/openldap
112117
path: openldap
113118
ref: ${{ matrix.git_ref }}
114119

115-
- name: Install dependencies
116-
run: |
117-
sudo apt-get update
118-
sudo apt-get install -y libsasl2-dev
119-
120120
- name: Build and test OpenLDAP with wolfProvider
121121
working-directory: openldap
122122
run: |

0 commit comments

Comments
 (0)