File tree Expand file tree Collapse file tree 2 files changed +9
-7
lines changed Expand file tree Collapse file tree 2 files changed +9
-7
lines changed Original file line number Diff line number Diff line change @@ -126,9 +126,11 @@ jobs:
126
126
autoreconf -ivf
127
127
128
128
# 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
131
132
sed -i 's/SUBDIRS = system//g' bin/tests/Makefile
133
+ sed -i 's/dst_test//g' lib/dns/tests/Makefile
132
134
133
135
# Build bind9
134
136
make -j$(nproc) V=1
Original file line number Diff line number Diff line change @@ -105,18 +105,18 @@ jobs:
105
105
key : wolfprov-${{ matrix.wolfssl_ref }}-${{ github.sha }}
106
106
fail-on-cache-miss : true
107
107
108
+ - name : Install dependencies
109
+ run : |
110
+ sudo apt-get update
111
+ sudo apt-get install -y libsasl2-dev
112
+
108
113
- name : Checkout openldap
109
114
uses : actions/checkout@v4
110
115
with :
111
116
repository : openldap/openldap
112
117
path : openldap
113
118
ref : ${{ matrix.git_ref }}
114
119
115
- - name : Install dependencies
116
- run : |
117
- sudo apt-get update
118
- sudo apt-get install -y libsasl2-dev
119
-
120
120
- name : Build and test OpenLDAP with wolfProvider
121
121
working-directory : openldap
122
122
run : |
You can’t perform that action at this time.
0 commit comments