Limit run regex for generated workflows

Signed-off-by: Kristoffer Dalby <kristoffer@tailscale.com>
This commit is contained in:
Kristoffer Dalby 2023-01-06 15:40:03 +01:00 committed by Kristoffer Dalby
parent b3a0c4a63b
commit 81254cdf7a
23 changed files with 23 additions and 23 deletions

View file

@ -44,4 +44,4 @@ jobs:
-failfast \ -failfast \
-timeout 120m \ -timeout 120m \
-parallel 1 \ -parallel 1 \
-run TestAuthKeyLogoutAndRelogin -run "^TestAuthKeyLogoutAndRelogin$"

View file

@ -44,4 +44,4 @@ jobs:
-failfast \ -failfast \
-timeout 120m \ -timeout 120m \
-parallel 1 \ -parallel 1 \
-run TestAuthWebFlowAuthenticationPingAll -run "^TestAuthWebFlowAuthenticationPingAll$"

View file

@ -44,4 +44,4 @@ jobs:
-failfast \ -failfast \
-timeout 120m \ -timeout 120m \
-parallel 1 \ -parallel 1 \
-run TestAuthWebFlowLogoutAndRelogin -run "^TestAuthWebFlowLogoutAndRelogin$"

View file

@ -44,4 +44,4 @@ jobs:
-failfast \ -failfast \
-timeout 120m \ -timeout 120m \
-parallel 1 \ -parallel 1 \
-run TestCreateTailscale -run "^TestCreateTailscale$"

View file

@ -44,4 +44,4 @@ jobs:
-failfast \ -failfast \
-timeout 120m \ -timeout 120m \
-parallel 1 \ -parallel 1 \
-run TestEnablingRoutes -run "^TestEnablingRoutes$"

View file

@ -44,4 +44,4 @@ jobs:
-failfast \ -failfast \
-timeout 120m \ -timeout 120m \
-parallel 1 \ -parallel 1 \
-run TestHeadscale -run "^TestHeadscale$"

View file

@ -44,4 +44,4 @@ jobs:
-failfast \ -failfast \
-timeout 120m \ -timeout 120m \
-parallel 1 \ -parallel 1 \
-run TestNamespaceCommand -run "^TestNamespaceCommand$"

View file

@ -44,4 +44,4 @@ jobs:
-failfast \ -failfast \
-timeout 120m \ -timeout 120m \
-parallel 1 \ -parallel 1 \
-run TestOIDCAuthenticationPingAll -run "^TestOIDCAuthenticationPingAll$"

View file

@ -44,4 +44,4 @@ jobs:
-failfast \ -failfast \
-timeout 120m \ -timeout 120m \
-parallel 1 \ -parallel 1 \
-run TestOIDCExpireNodes -run "^TestOIDCExpireNodes$"

View file

@ -44,4 +44,4 @@ jobs:
-failfast \ -failfast \
-timeout 120m \ -timeout 120m \
-parallel 1 \ -parallel 1 \
-run TestPingAllByHostname -run "^TestPingAllByHostname$"

View file

@ -44,4 +44,4 @@ jobs:
-failfast \ -failfast \
-timeout 120m \ -timeout 120m \
-parallel 1 \ -parallel 1 \
-run TestPingAllByIP -run "^TestPingAllByIP$"

View file

@ -44,4 +44,4 @@ jobs:
-failfast \ -failfast \
-timeout 120m \ -timeout 120m \
-parallel 1 \ -parallel 1 \
-run TestPreAuthKeyCommand -run "^TestPreAuthKeyCommand$"

View file

@ -44,4 +44,4 @@ jobs:
-failfast \ -failfast \
-timeout 120m \ -timeout 120m \
-parallel 1 \ -parallel 1 \
-run TestPreAuthKeyCommandReusableEphemeral -run "^TestPreAuthKeyCommandReusableEphemeral$"

View file

@ -44,4 +44,4 @@ jobs:
-failfast \ -failfast \
-timeout 120m \ -timeout 120m \
-parallel 1 \ -parallel 1 \
-run TestPreAuthKeyCommandWithoutExpiry -run "^TestPreAuthKeyCommandWithoutExpiry$"

View file

@ -44,4 +44,4 @@ jobs:
-failfast \ -failfast \
-timeout 120m \ -timeout 120m \
-parallel 1 \ -parallel 1 \
-run TestResolveMagicDNS -run "^TestResolveMagicDNS$"

View file

@ -44,4 +44,4 @@ jobs:
-failfast \ -failfast \
-timeout 120m \ -timeout 120m \
-parallel 1 \ -parallel 1 \
-run TestSSHIsBlockedInACL -run "^TestSSHIsBlockedInACL$"

View file

@ -44,4 +44,4 @@ jobs:
-failfast \ -failfast \
-timeout 120m \ -timeout 120m \
-parallel 1 \ -parallel 1 \
-run TestSSHMultipleNamespacesAllToAll -run "^TestSSHMultipleNamespacesAllToAll$"

View file

@ -44,4 +44,4 @@ jobs:
-failfast \ -failfast \
-timeout 120m \ -timeout 120m \
-parallel 1 \ -parallel 1 \
-run TestSSHNoSSHConfigured -run "^TestSSHNoSSHConfigured$"

View file

@ -44,4 +44,4 @@ jobs:
-failfast \ -failfast \
-timeout 120m \ -timeout 120m \
-parallel 1 \ -parallel 1 \
-run TestSSHOneNamespaceAllToAll -run "^TestSSHOneNamespaceAllToAll$"

View file

@ -44,4 +44,4 @@ jobs:
-failfast \ -failfast \
-timeout 120m \ -timeout 120m \
-parallel 1 \ -parallel 1 \
-run TestSSNamespaceOnlyIsolation -run "^TestSSNamespaceOnlyIsolation$"

View file

@ -44,4 +44,4 @@ jobs:
-failfast \ -failfast \
-timeout 120m \ -timeout 120m \
-parallel 1 \ -parallel 1 \
-run TestTaildrop -run "^TestTaildrop$"

View file

@ -44,4 +44,4 @@ jobs:
-failfast \ -failfast \
-timeout 120m \ -timeout 120m \
-parallel 1 \ -parallel 1 \
-run TestTailscaleNodesJoiningHeadcale -run "^TestTailscaleNodesJoiningHeadcale$"

View file

@ -58,7 +58,7 @@ jobs:
-failfast \ -failfast \
-timeout 120m \ -timeout 120m \
-parallel 1 \ -parallel 1 \
-run {{.Name}} -run "^{{.Name}}$"
`)) `))
) )