File tree Expand file tree Collapse file tree 1 file changed +6
-4
lines changed
Expand file tree Collapse file tree 1 file changed +6
-4
lines changed Original file line number Diff line number Diff line change @@ -344,18 +344,20 @@ jobs:
344344 && scp ${{ matrix.distribution }}:/usr/local/etc/wendzelnntpd/ssl/ca-key.pem tmp/ca-self.key
345345 - name : Create client cert for mutual tls tests
346346 run : cd unittesting && ./create-client-cert.sh
347+ # IPV4=$(ssh ${{ matrix.distribution }} '/sbin/ifconfig | awk "/inet / && !/127.0.0.1/ { print \$2; exit }"')
347348 - name : get addr ipv4 revised
348349 run : |
349- IPV4=$(ssh ${{ matrix.distribution }} '/sbin/ifconfig | awk "/inet / && !/ 127.0.0.1/ { print \$2; exit }"')
350+ IPv4=" 127.0.0.1"
350351 echo "ipv4=$IPV4" >> $GITHUB_ENV
352+ # IPV6=$(ssh ${{ matrix.distribution }} '/sbin/ifconfig | awk "/inet6 / && !/fe80/ && !/::1/ { print \$2; exit }"')
351353 - name : get container ipv6
352354 run : |
353- IPV6=$(ssh ${{ matrix.distribution }} '/sbin/ifconfig | awk "/inet6 / && !/fe80/ && !/ ::1/ { print \$2; exit }"')
355+ IPv6=" ::1"
354356 echo "ipv6=${IPV6%/64}" >> $GITHUB_ENV
355357 # - name: Smoketest IPv4
356358 # run: netcat ${{ env.ipv4 }} 119 -w 1
357- - name : Smoketest IPv6
358- run : netcat ${{ env.ipv6 }} 119 -w 1
359+ # - name: Smoketest IPv6
360+ # run: netcat ${{ env.ipv6 }} 119 -w 1
359361 - name : expect tests IPv4
360362 run : cd unittesting && nntp_address=${{ env.ipv4 }} ./run.sh
361363 - name : expect tests IPv6
You can’t perform that action at this time.
0 commit comments