Skip to content

Commit 5dbe414

Browse files
author
Steffen Wendzel
committed
remove ipv6 smoketest too
1 parent 157e993 commit 5dbe414

File tree

1 file changed

+6
-4
lines changed

1 file changed

+6
-4
lines changed

.github/workflows/build-tests.yml

Lines changed: 6 additions & 4 deletions
Original file line numberDiff line numberDiff 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

0 commit comments

Comments
 (0)