Changeset 2b3a2814 in mod_gnutls
- Timestamp:
- Jun 25, 2020, 4:11:48 AM (2 years ago)
- Branches:
- asyncio, master
- Children:
- 40d4afa
- Parents:
- 22a737b
- Files:
-
- 2 edited
Legend:
- Unmodified
- Added
- Removed
-
.github/workflows/build.yml
r22a737b r2b3a2814 38 38 - name: find usable IPs for tests 39 39 run: | 40 echo "::set-env name=test_ips::$(python3 test/check_test_ips.py localhost $(hostname))"40 echo "::set-env name=test_ips::$(python3 test/check_test_ips.py -H localhost)" 41 41 - name: set prefix for container-specific artifacts 42 42 # this is because upload-artifact doesn't like ":" in file names -
test/check_test_ips.py
r22a737b r2b3a2814 44 44 parser.add_argument('--quiet', '-q', action='store_true', 45 45 help='disable debug output') 46 parser.add_argument('--hostname', '-H', action='store_true', 47 help='append socket.gethostname() to hosts') 46 48 args = parser.parse_args() 49 50 if args.hostname: 51 args.hosts.append(socket.gethostname()) 47 52 48 53 test_ips = []
Note: See TracChangeset
for help on using the changeset viewer.