You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
This creates a test frameword for testing PHP DNS functions that are
currently completely untested. It provides script for starting BIND 9
DNS server that uses locally defined zone files. Those can be then used
for creating specific test scenarios without a need to use online tests.
As part of that, the systemd resolv script is provided to use BIND as a
primary resolver. This all is then used in the CI.
Copy file name to clipboardExpand all lines: .github/actions/setup-x64/action.yml
+3Lines changed: 3 additions & 0 deletions
Original file line number
Diff line number
Diff line change
@@ -6,6 +6,9 @@ runs:
6
6
run: |
7
7
set -x
8
8
9
+
sudo ./ext/standard/tests/dns/bind-start.sh
10
+
sudo ./ext/standard/tests/dns/resolv-setup.sh
11
+
9
12
sudo service slapd start
10
13
docker exec sql1 /opt/mssql-tools18/bin/sqlcmd -S 127.0.0.1 -U SA -C -P "<YourStrong@Passw0rd>" -Q "create login pdo_test with password='password', check_policy=off; create user pdo_test for login pdo_test; grant alter, control to pdo_test;"
11
14
docker exec sql1 /opt/mssql-tools18/bin/sqlcmd -S 127.0.0.1 -U SA -C -P "<YourStrong@Passw0rd>" -Q "create login odbc_test with password='password', check_policy=off; create user odbc_test for login odbc_test; grant alter, control, delete to odbc_test;"
0 commit comments