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 \
-timeout 120m \
-parallel 1 \
-run TestAuthKeyLogoutAndRelogin
-run "^TestAuthKeyLogoutAndRelogin$"

View File

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

View File

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

View File

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

View File

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

View File

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

View File

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

View File

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

View File

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

View File

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

View File

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

View File

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

View File

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

View File

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

View File

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

View File

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

View File

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

View File

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

View File

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

View File

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

View File

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

View File

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

View File

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