We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 0e5f02f commit 571366fCopy full SHA for 571366f
.azure-pipelines/steps/run.yml
@@ -37,6 +37,15 @@ steps:
37
38
- template: install-windows-build-deps.yml
39
40
+# Looks like docker containers have IPv6 disabled by default, so let's turn it
41
+# on since libstd tests require it
42
+- bash: |
43
+ set -e
44
+ echo '{"ipv6":true,"fixed-cidr-v6":"fd9a:8454:6789:13f7::/64"}' | sudo tee /etc/docker/daemon.json
45
+ sudo service docker restart
46
+ displayName: Enable IPv6
47
+ condition: and(succeeded(), eq(variables['Agent.OS'], 'Linux'))
48
+
49
# Check out all our submodules, but more quickly than using git by using one of
50
# our custom scripts
51
- bash: |
0 commit comments