Enhance pipeline stability and automatically retry unstable tests (#1566)
* add test retry to action * add test retry to action
This commit is contained in:
parent
a59aab2081
commit
85e92db505
40 changed files with 160 additions and 40 deletions
.github/workflows
test-integration-v2-TestACLAllowStarDst.yamltest-integration-v2-TestACLAllowUser80Dst.yamltest-integration-v2-TestACLAllowUserDst.yamltest-integration-v2-TestACLDenyAllPort80.yamltest-integration-v2-TestACLDevice1CanAccessDevice2.yamltest-integration-v2-TestACLHostsInNetMapTable.yamltest-integration-v2-TestACLNamedHostsCanReach.yamltest-integration-v2-TestACLNamedHostsCanReachBySubnet.yamltest-integration-v2-TestApiKeyCommand.yamltest-integration-v2-TestAuthKeyLogoutAndRelogin.yamltest-integration-v2-TestAuthWebFlowAuthenticationPingAll.yamltest-integration-v2-TestAuthWebFlowLogoutAndRelogin.yamltest-integration-v2-TestCreateTailscale.yamltest-integration-v2-TestDERPServerScenario.yamltest-integration-v2-TestEnablingRoutes.yamltest-integration-v2-TestEphemeral.yamltest-integration-v2-TestExpireNode.yamltest-integration-v2-TestHeadscale.yamltest-integration-v2-TestNodeCommand.yamltest-integration-v2-TestNodeExpireCommand.yamltest-integration-v2-TestNodeMoveCommand.yamltest-integration-v2-TestNodeRenameCommand.yamltest-integration-v2-TestNodeTagCommand.yamltest-integration-v2-TestOIDCAuthenticationPingAll.yamltest-integration-v2-TestOIDCExpireNodesBasedOnTokenExpiry.yamltest-integration-v2-TestPingAllByHostname.yamltest-integration-v2-TestPingAllByIP.yamltest-integration-v2-TestPreAuthKeyCommand.yamltest-integration-v2-TestPreAuthKeyCommandReusableEphemeral.yamltest-integration-v2-TestPreAuthKeyCommandWithoutExpiry.yamltest-integration-v2-TestResolveMagicDNS.yamltest-integration-v2-TestSSHIsBlockedInACL.yamltest-integration-v2-TestSSHMultipleUsersAllToAll.yamltest-integration-v2-TestSSHNoSSHConfigured.yamltest-integration-v2-TestSSHOneUserToAll.yamltest-integration-v2-TestSSHUserOnlyIsolation.yamltest-integration-v2-TestTaildrop.yamltest-integration-v2-TestTailscaleNodesJoiningHeadcale.yamltest-integration-v2-TestUserCommand.yaml
cmd/gh-action-integration-generator
|
@ -35,8 +35,11 @@ jobs:
|
||||||
config-example.yaml
|
config-example.yaml
|
||||||
|
|
||||||
- name: Run TestACLAllowStarDst
|
- name: Run TestACLAllowStarDst
|
||||||
|
uses: Wandalen/wretry.action@master
|
||||||
if: steps.changed-files.outputs.any_changed == 'true'
|
if: steps.changed-files.outputs.any_changed == 'true'
|
||||||
run: |
|
with:
|
||||||
|
attempt_limit: 5
|
||||||
|
command: |
|
||||||
nix develop --command -- docker run \
|
nix develop --command -- docker run \
|
||||||
--tty --rm \
|
--tty --rm \
|
||||||
--volume ~/.cache/hs-integration-go:/go \
|
--volume ~/.cache/hs-integration-go:/go \
|
||||||
|
|
|
@ -35,8 +35,11 @@ jobs:
|
||||||
config-example.yaml
|
config-example.yaml
|
||||||
|
|
||||||
- name: Run TestACLAllowUser80Dst
|
- name: Run TestACLAllowUser80Dst
|
||||||
|
uses: Wandalen/wretry.action@master
|
||||||
if: steps.changed-files.outputs.any_changed == 'true'
|
if: steps.changed-files.outputs.any_changed == 'true'
|
||||||
run: |
|
with:
|
||||||
|
attempt_limit: 5
|
||||||
|
command: |
|
||||||
nix develop --command -- docker run \
|
nix develop --command -- docker run \
|
||||||
--tty --rm \
|
--tty --rm \
|
||||||
--volume ~/.cache/hs-integration-go:/go \
|
--volume ~/.cache/hs-integration-go:/go \
|
||||||
|
|
|
@ -35,8 +35,11 @@ jobs:
|
||||||
config-example.yaml
|
config-example.yaml
|
||||||
|
|
||||||
- name: Run TestACLAllowUserDst
|
- name: Run TestACLAllowUserDst
|
||||||
|
uses: Wandalen/wretry.action@master
|
||||||
if: steps.changed-files.outputs.any_changed == 'true'
|
if: steps.changed-files.outputs.any_changed == 'true'
|
||||||
run: |
|
with:
|
||||||
|
attempt_limit: 5
|
||||||
|
command: |
|
||||||
nix develop --command -- docker run \
|
nix develop --command -- docker run \
|
||||||
--tty --rm \
|
--tty --rm \
|
||||||
--volume ~/.cache/hs-integration-go:/go \
|
--volume ~/.cache/hs-integration-go:/go \
|
||||||
|
|
|
@ -35,8 +35,11 @@ jobs:
|
||||||
config-example.yaml
|
config-example.yaml
|
||||||
|
|
||||||
- name: Run TestACLDenyAllPort80
|
- name: Run TestACLDenyAllPort80
|
||||||
|
uses: Wandalen/wretry.action@master
|
||||||
if: steps.changed-files.outputs.any_changed == 'true'
|
if: steps.changed-files.outputs.any_changed == 'true'
|
||||||
run: |
|
with:
|
||||||
|
attempt_limit: 5
|
||||||
|
command: |
|
||||||
nix develop --command -- docker run \
|
nix develop --command -- docker run \
|
||||||
--tty --rm \
|
--tty --rm \
|
||||||
--volume ~/.cache/hs-integration-go:/go \
|
--volume ~/.cache/hs-integration-go:/go \
|
||||||
|
|
|
@ -35,8 +35,11 @@ jobs:
|
||||||
config-example.yaml
|
config-example.yaml
|
||||||
|
|
||||||
- name: Run TestACLDevice1CanAccessDevice2
|
- name: Run TestACLDevice1CanAccessDevice2
|
||||||
|
uses: Wandalen/wretry.action@master
|
||||||
if: steps.changed-files.outputs.any_changed == 'true'
|
if: steps.changed-files.outputs.any_changed == 'true'
|
||||||
run: |
|
with:
|
||||||
|
attempt_limit: 5
|
||||||
|
command: |
|
||||||
nix develop --command -- docker run \
|
nix develop --command -- docker run \
|
||||||
--tty --rm \
|
--tty --rm \
|
||||||
--volume ~/.cache/hs-integration-go:/go \
|
--volume ~/.cache/hs-integration-go:/go \
|
||||||
|
|
|
@ -35,8 +35,11 @@ jobs:
|
||||||
config-example.yaml
|
config-example.yaml
|
||||||
|
|
||||||
- name: Run TestACLHostsInNetMapTable
|
- name: Run TestACLHostsInNetMapTable
|
||||||
|
uses: Wandalen/wretry.action@master
|
||||||
if: steps.changed-files.outputs.any_changed == 'true'
|
if: steps.changed-files.outputs.any_changed == 'true'
|
||||||
run: |
|
with:
|
||||||
|
attempt_limit: 5
|
||||||
|
command: |
|
||||||
nix develop --command -- docker run \
|
nix develop --command -- docker run \
|
||||||
--tty --rm \
|
--tty --rm \
|
||||||
--volume ~/.cache/hs-integration-go:/go \
|
--volume ~/.cache/hs-integration-go:/go \
|
||||||
|
|
|
@ -35,8 +35,11 @@ jobs:
|
||||||
config-example.yaml
|
config-example.yaml
|
||||||
|
|
||||||
- name: Run TestACLNamedHostsCanReach
|
- name: Run TestACLNamedHostsCanReach
|
||||||
|
uses: Wandalen/wretry.action@master
|
||||||
if: steps.changed-files.outputs.any_changed == 'true'
|
if: steps.changed-files.outputs.any_changed == 'true'
|
||||||
run: |
|
with:
|
||||||
|
attempt_limit: 5
|
||||||
|
command: |
|
||||||
nix develop --command -- docker run \
|
nix develop --command -- docker run \
|
||||||
--tty --rm \
|
--tty --rm \
|
||||||
--volume ~/.cache/hs-integration-go:/go \
|
--volume ~/.cache/hs-integration-go:/go \
|
||||||
|
|
|
@ -35,8 +35,11 @@ jobs:
|
||||||
config-example.yaml
|
config-example.yaml
|
||||||
|
|
||||||
- name: Run TestACLNamedHostsCanReachBySubnet
|
- name: Run TestACLNamedHostsCanReachBySubnet
|
||||||
|
uses: Wandalen/wretry.action@master
|
||||||
if: steps.changed-files.outputs.any_changed == 'true'
|
if: steps.changed-files.outputs.any_changed == 'true'
|
||||||
run: |
|
with:
|
||||||
|
attempt_limit: 5
|
||||||
|
command: |
|
||||||
nix develop --command -- docker run \
|
nix develop --command -- docker run \
|
||||||
--tty --rm \
|
--tty --rm \
|
||||||
--volume ~/.cache/hs-integration-go:/go \
|
--volume ~/.cache/hs-integration-go:/go \
|
||||||
|
|
|
@ -35,8 +35,11 @@ jobs:
|
||||||
config-example.yaml
|
config-example.yaml
|
||||||
|
|
||||||
- name: Run TestApiKeyCommand
|
- name: Run TestApiKeyCommand
|
||||||
|
uses: Wandalen/wretry.action@master
|
||||||
if: steps.changed-files.outputs.any_changed == 'true'
|
if: steps.changed-files.outputs.any_changed == 'true'
|
||||||
run: |
|
with:
|
||||||
|
attempt_limit: 5
|
||||||
|
command: |
|
||||||
nix develop --command -- docker run \
|
nix develop --command -- docker run \
|
||||||
--tty --rm \
|
--tty --rm \
|
||||||
--volume ~/.cache/hs-integration-go:/go \
|
--volume ~/.cache/hs-integration-go:/go \
|
||||||
|
|
|
@ -35,8 +35,11 @@ jobs:
|
||||||
config-example.yaml
|
config-example.yaml
|
||||||
|
|
||||||
- name: Run TestAuthKeyLogoutAndRelogin
|
- name: Run TestAuthKeyLogoutAndRelogin
|
||||||
|
uses: Wandalen/wretry.action@master
|
||||||
if: steps.changed-files.outputs.any_changed == 'true'
|
if: steps.changed-files.outputs.any_changed == 'true'
|
||||||
run: |
|
with:
|
||||||
|
attempt_limit: 5
|
||||||
|
command: |
|
||||||
nix develop --command -- docker run \
|
nix develop --command -- docker run \
|
||||||
--tty --rm \
|
--tty --rm \
|
||||||
--volume ~/.cache/hs-integration-go:/go \
|
--volume ~/.cache/hs-integration-go:/go \
|
||||||
|
|
|
@ -35,8 +35,11 @@ jobs:
|
||||||
config-example.yaml
|
config-example.yaml
|
||||||
|
|
||||||
- name: Run TestAuthWebFlowAuthenticationPingAll
|
- name: Run TestAuthWebFlowAuthenticationPingAll
|
||||||
|
uses: Wandalen/wretry.action@master
|
||||||
if: steps.changed-files.outputs.any_changed == 'true'
|
if: steps.changed-files.outputs.any_changed == 'true'
|
||||||
run: |
|
with:
|
||||||
|
attempt_limit: 5
|
||||||
|
command: |
|
||||||
nix develop --command -- docker run \
|
nix develop --command -- docker run \
|
||||||
--tty --rm \
|
--tty --rm \
|
||||||
--volume ~/.cache/hs-integration-go:/go \
|
--volume ~/.cache/hs-integration-go:/go \
|
||||||
|
|
|
@ -35,8 +35,11 @@ jobs:
|
||||||
config-example.yaml
|
config-example.yaml
|
||||||
|
|
||||||
- name: Run TestAuthWebFlowLogoutAndRelogin
|
- name: Run TestAuthWebFlowLogoutAndRelogin
|
||||||
|
uses: Wandalen/wretry.action@master
|
||||||
if: steps.changed-files.outputs.any_changed == 'true'
|
if: steps.changed-files.outputs.any_changed == 'true'
|
||||||
run: |
|
with:
|
||||||
|
attempt_limit: 5
|
||||||
|
command: |
|
||||||
nix develop --command -- docker run \
|
nix develop --command -- docker run \
|
||||||
--tty --rm \
|
--tty --rm \
|
||||||
--volume ~/.cache/hs-integration-go:/go \
|
--volume ~/.cache/hs-integration-go:/go \
|
||||||
|
|
|
@ -35,8 +35,11 @@ jobs:
|
||||||
config-example.yaml
|
config-example.yaml
|
||||||
|
|
||||||
- name: Run TestCreateTailscale
|
- name: Run TestCreateTailscale
|
||||||
|
uses: Wandalen/wretry.action@master
|
||||||
if: steps.changed-files.outputs.any_changed == 'true'
|
if: steps.changed-files.outputs.any_changed == 'true'
|
||||||
run: |
|
with:
|
||||||
|
attempt_limit: 5
|
||||||
|
command: |
|
||||||
nix develop --command -- docker run \
|
nix develop --command -- docker run \
|
||||||
--tty --rm \
|
--tty --rm \
|
||||||
--volume ~/.cache/hs-integration-go:/go \
|
--volume ~/.cache/hs-integration-go:/go \
|
||||||
|
|
|
@ -35,8 +35,11 @@ jobs:
|
||||||
config-example.yaml
|
config-example.yaml
|
||||||
|
|
||||||
- name: Run TestDERPServerScenario
|
- name: Run TestDERPServerScenario
|
||||||
|
uses: Wandalen/wretry.action@master
|
||||||
if: steps.changed-files.outputs.any_changed == 'true'
|
if: steps.changed-files.outputs.any_changed == 'true'
|
||||||
run: |
|
with:
|
||||||
|
attempt_limit: 5
|
||||||
|
command: |
|
||||||
nix develop --command -- docker run \
|
nix develop --command -- docker run \
|
||||||
--tty --rm \
|
--tty --rm \
|
||||||
--volume ~/.cache/hs-integration-go:/go \
|
--volume ~/.cache/hs-integration-go:/go \
|
||||||
|
|
|
@ -35,8 +35,11 @@ jobs:
|
||||||
config-example.yaml
|
config-example.yaml
|
||||||
|
|
||||||
- name: Run TestEnablingRoutes
|
- name: Run TestEnablingRoutes
|
||||||
|
uses: Wandalen/wretry.action@master
|
||||||
if: steps.changed-files.outputs.any_changed == 'true'
|
if: steps.changed-files.outputs.any_changed == 'true'
|
||||||
run: |
|
with:
|
||||||
|
attempt_limit: 5
|
||||||
|
command: |
|
||||||
nix develop --command -- docker run \
|
nix develop --command -- docker run \
|
||||||
--tty --rm \
|
--tty --rm \
|
||||||
--volume ~/.cache/hs-integration-go:/go \
|
--volume ~/.cache/hs-integration-go:/go \
|
||||||
|
|
|
@ -35,8 +35,11 @@ jobs:
|
||||||
config-example.yaml
|
config-example.yaml
|
||||||
|
|
||||||
- name: Run TestEphemeral
|
- name: Run TestEphemeral
|
||||||
|
uses: Wandalen/wretry.action@master
|
||||||
if: steps.changed-files.outputs.any_changed == 'true'
|
if: steps.changed-files.outputs.any_changed == 'true'
|
||||||
run: |
|
with:
|
||||||
|
attempt_limit: 5
|
||||||
|
command: |
|
||||||
nix develop --command -- docker run \
|
nix develop --command -- docker run \
|
||||||
--tty --rm \
|
--tty --rm \
|
||||||
--volume ~/.cache/hs-integration-go:/go \
|
--volume ~/.cache/hs-integration-go:/go \
|
||||||
|
|
|
@ -35,8 +35,11 @@ jobs:
|
||||||
config-example.yaml
|
config-example.yaml
|
||||||
|
|
||||||
- name: Run TestExpireNode
|
- name: Run TestExpireNode
|
||||||
|
uses: Wandalen/wretry.action@master
|
||||||
if: steps.changed-files.outputs.any_changed == 'true'
|
if: steps.changed-files.outputs.any_changed == 'true'
|
||||||
run: |
|
with:
|
||||||
|
attempt_limit: 5
|
||||||
|
command: |
|
||||||
nix develop --command -- docker run \
|
nix develop --command -- docker run \
|
||||||
--tty --rm \
|
--tty --rm \
|
||||||
--volume ~/.cache/hs-integration-go:/go \
|
--volume ~/.cache/hs-integration-go:/go \
|
||||||
|
|
|
@ -35,8 +35,11 @@ jobs:
|
||||||
config-example.yaml
|
config-example.yaml
|
||||||
|
|
||||||
- name: Run TestHeadscale
|
- name: Run TestHeadscale
|
||||||
|
uses: Wandalen/wretry.action@master
|
||||||
if: steps.changed-files.outputs.any_changed == 'true'
|
if: steps.changed-files.outputs.any_changed == 'true'
|
||||||
run: |
|
with:
|
||||||
|
attempt_limit: 5
|
||||||
|
command: |
|
||||||
nix develop --command -- docker run \
|
nix develop --command -- docker run \
|
||||||
--tty --rm \
|
--tty --rm \
|
||||||
--volume ~/.cache/hs-integration-go:/go \
|
--volume ~/.cache/hs-integration-go:/go \
|
||||||
|
|
|
@ -35,8 +35,11 @@ jobs:
|
||||||
config-example.yaml
|
config-example.yaml
|
||||||
|
|
||||||
- name: Run TestNodeCommand
|
- name: Run TestNodeCommand
|
||||||
|
uses: Wandalen/wretry.action@master
|
||||||
if: steps.changed-files.outputs.any_changed == 'true'
|
if: steps.changed-files.outputs.any_changed == 'true'
|
||||||
run: |
|
with:
|
||||||
|
attempt_limit: 5
|
||||||
|
command: |
|
||||||
nix develop --command -- docker run \
|
nix develop --command -- docker run \
|
||||||
--tty --rm \
|
--tty --rm \
|
||||||
--volume ~/.cache/hs-integration-go:/go \
|
--volume ~/.cache/hs-integration-go:/go \
|
||||||
|
|
|
@ -35,8 +35,11 @@ jobs:
|
||||||
config-example.yaml
|
config-example.yaml
|
||||||
|
|
||||||
- name: Run TestNodeExpireCommand
|
- name: Run TestNodeExpireCommand
|
||||||
|
uses: Wandalen/wretry.action@master
|
||||||
if: steps.changed-files.outputs.any_changed == 'true'
|
if: steps.changed-files.outputs.any_changed == 'true'
|
||||||
run: |
|
with:
|
||||||
|
attempt_limit: 5
|
||||||
|
command: |
|
||||||
nix develop --command -- docker run \
|
nix develop --command -- docker run \
|
||||||
--tty --rm \
|
--tty --rm \
|
||||||
--volume ~/.cache/hs-integration-go:/go \
|
--volume ~/.cache/hs-integration-go:/go \
|
||||||
|
|
|
@ -35,8 +35,11 @@ jobs:
|
||||||
config-example.yaml
|
config-example.yaml
|
||||||
|
|
||||||
- name: Run TestNodeMoveCommand
|
- name: Run TestNodeMoveCommand
|
||||||
|
uses: Wandalen/wretry.action@master
|
||||||
if: steps.changed-files.outputs.any_changed == 'true'
|
if: steps.changed-files.outputs.any_changed == 'true'
|
||||||
run: |
|
with:
|
||||||
|
attempt_limit: 5
|
||||||
|
command: |
|
||||||
nix develop --command -- docker run \
|
nix develop --command -- docker run \
|
||||||
--tty --rm \
|
--tty --rm \
|
||||||
--volume ~/.cache/hs-integration-go:/go \
|
--volume ~/.cache/hs-integration-go:/go \
|
||||||
|
|
|
@ -35,8 +35,11 @@ jobs:
|
||||||
config-example.yaml
|
config-example.yaml
|
||||||
|
|
||||||
- name: Run TestNodeRenameCommand
|
- name: Run TestNodeRenameCommand
|
||||||
|
uses: Wandalen/wretry.action@master
|
||||||
if: steps.changed-files.outputs.any_changed == 'true'
|
if: steps.changed-files.outputs.any_changed == 'true'
|
||||||
run: |
|
with:
|
||||||
|
attempt_limit: 5
|
||||||
|
command: |
|
||||||
nix develop --command -- docker run \
|
nix develop --command -- docker run \
|
||||||
--tty --rm \
|
--tty --rm \
|
||||||
--volume ~/.cache/hs-integration-go:/go \
|
--volume ~/.cache/hs-integration-go:/go \
|
||||||
|
|
|
@ -35,8 +35,11 @@ jobs:
|
||||||
config-example.yaml
|
config-example.yaml
|
||||||
|
|
||||||
- name: Run TestNodeTagCommand
|
- name: Run TestNodeTagCommand
|
||||||
|
uses: Wandalen/wretry.action@master
|
||||||
if: steps.changed-files.outputs.any_changed == 'true'
|
if: steps.changed-files.outputs.any_changed == 'true'
|
||||||
run: |
|
with:
|
||||||
|
attempt_limit: 5
|
||||||
|
command: |
|
||||||
nix develop --command -- docker run \
|
nix develop --command -- docker run \
|
||||||
--tty --rm \
|
--tty --rm \
|
||||||
--volume ~/.cache/hs-integration-go:/go \
|
--volume ~/.cache/hs-integration-go:/go \
|
||||||
|
|
|
@ -35,8 +35,11 @@ jobs:
|
||||||
config-example.yaml
|
config-example.yaml
|
||||||
|
|
||||||
- name: Run TestOIDCAuthenticationPingAll
|
- name: Run TestOIDCAuthenticationPingAll
|
||||||
|
uses: Wandalen/wretry.action@master
|
||||||
if: steps.changed-files.outputs.any_changed == 'true'
|
if: steps.changed-files.outputs.any_changed == 'true'
|
||||||
run: |
|
with:
|
||||||
|
attempt_limit: 5
|
||||||
|
command: |
|
||||||
nix develop --command -- docker run \
|
nix develop --command -- docker run \
|
||||||
--tty --rm \
|
--tty --rm \
|
||||||
--volume ~/.cache/hs-integration-go:/go \
|
--volume ~/.cache/hs-integration-go:/go \
|
||||||
|
|
|
@ -35,8 +35,11 @@ jobs:
|
||||||
config-example.yaml
|
config-example.yaml
|
||||||
|
|
||||||
- name: Run TestOIDCExpireNodesBasedOnTokenExpiry
|
- name: Run TestOIDCExpireNodesBasedOnTokenExpiry
|
||||||
|
uses: Wandalen/wretry.action@master
|
||||||
if: steps.changed-files.outputs.any_changed == 'true'
|
if: steps.changed-files.outputs.any_changed == 'true'
|
||||||
run: |
|
with:
|
||||||
|
attempt_limit: 5
|
||||||
|
command: |
|
||||||
nix develop --command -- docker run \
|
nix develop --command -- docker run \
|
||||||
--tty --rm \
|
--tty --rm \
|
||||||
--volume ~/.cache/hs-integration-go:/go \
|
--volume ~/.cache/hs-integration-go:/go \
|
||||||
|
|
|
@ -35,8 +35,11 @@ jobs:
|
||||||
config-example.yaml
|
config-example.yaml
|
||||||
|
|
||||||
- name: Run TestPingAllByHostname
|
- name: Run TestPingAllByHostname
|
||||||
|
uses: Wandalen/wretry.action@master
|
||||||
if: steps.changed-files.outputs.any_changed == 'true'
|
if: steps.changed-files.outputs.any_changed == 'true'
|
||||||
run: |
|
with:
|
||||||
|
attempt_limit: 5
|
||||||
|
command: |
|
||||||
nix develop --command -- docker run \
|
nix develop --command -- docker run \
|
||||||
--tty --rm \
|
--tty --rm \
|
||||||
--volume ~/.cache/hs-integration-go:/go \
|
--volume ~/.cache/hs-integration-go:/go \
|
||||||
|
|
|
@ -35,8 +35,11 @@ jobs:
|
||||||
config-example.yaml
|
config-example.yaml
|
||||||
|
|
||||||
- name: Run TestPingAllByIP
|
- name: Run TestPingAllByIP
|
||||||
|
uses: Wandalen/wretry.action@master
|
||||||
if: steps.changed-files.outputs.any_changed == 'true'
|
if: steps.changed-files.outputs.any_changed == 'true'
|
||||||
run: |
|
with:
|
||||||
|
attempt_limit: 5
|
||||||
|
command: |
|
||||||
nix develop --command -- docker run \
|
nix develop --command -- docker run \
|
||||||
--tty --rm \
|
--tty --rm \
|
||||||
--volume ~/.cache/hs-integration-go:/go \
|
--volume ~/.cache/hs-integration-go:/go \
|
||||||
|
|
|
@ -35,8 +35,11 @@ jobs:
|
||||||
config-example.yaml
|
config-example.yaml
|
||||||
|
|
||||||
- name: Run TestPreAuthKeyCommand
|
- name: Run TestPreAuthKeyCommand
|
||||||
|
uses: Wandalen/wretry.action@master
|
||||||
if: steps.changed-files.outputs.any_changed == 'true'
|
if: steps.changed-files.outputs.any_changed == 'true'
|
||||||
run: |
|
with:
|
||||||
|
attempt_limit: 5
|
||||||
|
command: |
|
||||||
nix develop --command -- docker run \
|
nix develop --command -- docker run \
|
||||||
--tty --rm \
|
--tty --rm \
|
||||||
--volume ~/.cache/hs-integration-go:/go \
|
--volume ~/.cache/hs-integration-go:/go \
|
||||||
|
|
|
@ -35,8 +35,11 @@ jobs:
|
||||||
config-example.yaml
|
config-example.yaml
|
||||||
|
|
||||||
- name: Run TestPreAuthKeyCommandReusableEphemeral
|
- name: Run TestPreAuthKeyCommandReusableEphemeral
|
||||||
|
uses: Wandalen/wretry.action@master
|
||||||
if: steps.changed-files.outputs.any_changed == 'true'
|
if: steps.changed-files.outputs.any_changed == 'true'
|
||||||
run: |
|
with:
|
||||||
|
attempt_limit: 5
|
||||||
|
command: |
|
||||||
nix develop --command -- docker run \
|
nix develop --command -- docker run \
|
||||||
--tty --rm \
|
--tty --rm \
|
||||||
--volume ~/.cache/hs-integration-go:/go \
|
--volume ~/.cache/hs-integration-go:/go \
|
||||||
|
|
|
@ -35,8 +35,11 @@ jobs:
|
||||||
config-example.yaml
|
config-example.yaml
|
||||||
|
|
||||||
- name: Run TestPreAuthKeyCommandWithoutExpiry
|
- name: Run TestPreAuthKeyCommandWithoutExpiry
|
||||||
|
uses: Wandalen/wretry.action@master
|
||||||
if: steps.changed-files.outputs.any_changed == 'true'
|
if: steps.changed-files.outputs.any_changed == 'true'
|
||||||
run: |
|
with:
|
||||||
|
attempt_limit: 5
|
||||||
|
command: |
|
||||||
nix develop --command -- docker run \
|
nix develop --command -- docker run \
|
||||||
--tty --rm \
|
--tty --rm \
|
||||||
--volume ~/.cache/hs-integration-go:/go \
|
--volume ~/.cache/hs-integration-go:/go \
|
||||||
|
|
|
@ -35,8 +35,11 @@ jobs:
|
||||||
config-example.yaml
|
config-example.yaml
|
||||||
|
|
||||||
- name: Run TestResolveMagicDNS
|
- name: Run TestResolveMagicDNS
|
||||||
|
uses: Wandalen/wretry.action@master
|
||||||
if: steps.changed-files.outputs.any_changed == 'true'
|
if: steps.changed-files.outputs.any_changed == 'true'
|
||||||
run: |
|
with:
|
||||||
|
attempt_limit: 5
|
||||||
|
command: |
|
||||||
nix develop --command -- docker run \
|
nix develop --command -- docker run \
|
||||||
--tty --rm \
|
--tty --rm \
|
||||||
--volume ~/.cache/hs-integration-go:/go \
|
--volume ~/.cache/hs-integration-go:/go \
|
||||||
|
|
|
@ -35,8 +35,11 @@ jobs:
|
||||||
config-example.yaml
|
config-example.yaml
|
||||||
|
|
||||||
- name: Run TestSSHIsBlockedInACL
|
- name: Run TestSSHIsBlockedInACL
|
||||||
|
uses: Wandalen/wretry.action@master
|
||||||
if: steps.changed-files.outputs.any_changed == 'true'
|
if: steps.changed-files.outputs.any_changed == 'true'
|
||||||
run: |
|
with:
|
||||||
|
attempt_limit: 5
|
||||||
|
command: |
|
||||||
nix develop --command -- docker run \
|
nix develop --command -- docker run \
|
||||||
--tty --rm \
|
--tty --rm \
|
||||||
--volume ~/.cache/hs-integration-go:/go \
|
--volume ~/.cache/hs-integration-go:/go \
|
||||||
|
|
|
@ -35,8 +35,11 @@ jobs:
|
||||||
config-example.yaml
|
config-example.yaml
|
||||||
|
|
||||||
- name: Run TestSSHMultipleUsersAllToAll
|
- name: Run TestSSHMultipleUsersAllToAll
|
||||||
|
uses: Wandalen/wretry.action@master
|
||||||
if: steps.changed-files.outputs.any_changed == 'true'
|
if: steps.changed-files.outputs.any_changed == 'true'
|
||||||
run: |
|
with:
|
||||||
|
attempt_limit: 5
|
||||||
|
command: |
|
||||||
nix develop --command -- docker run \
|
nix develop --command -- docker run \
|
||||||
--tty --rm \
|
--tty --rm \
|
||||||
--volume ~/.cache/hs-integration-go:/go \
|
--volume ~/.cache/hs-integration-go:/go \
|
||||||
|
|
|
@ -35,8 +35,11 @@ jobs:
|
||||||
config-example.yaml
|
config-example.yaml
|
||||||
|
|
||||||
- name: Run TestSSHNoSSHConfigured
|
- name: Run TestSSHNoSSHConfigured
|
||||||
|
uses: Wandalen/wretry.action@master
|
||||||
if: steps.changed-files.outputs.any_changed == 'true'
|
if: steps.changed-files.outputs.any_changed == 'true'
|
||||||
run: |
|
with:
|
||||||
|
attempt_limit: 5
|
||||||
|
command: |
|
||||||
nix develop --command -- docker run \
|
nix develop --command -- docker run \
|
||||||
--tty --rm \
|
--tty --rm \
|
||||||
--volume ~/.cache/hs-integration-go:/go \
|
--volume ~/.cache/hs-integration-go:/go \
|
||||||
|
|
|
@ -35,8 +35,11 @@ jobs:
|
||||||
config-example.yaml
|
config-example.yaml
|
||||||
|
|
||||||
- name: Run TestSSHOneUserToAll
|
- name: Run TestSSHOneUserToAll
|
||||||
|
uses: Wandalen/wretry.action@master
|
||||||
if: steps.changed-files.outputs.any_changed == 'true'
|
if: steps.changed-files.outputs.any_changed == 'true'
|
||||||
run: |
|
with:
|
||||||
|
attempt_limit: 5
|
||||||
|
command: |
|
||||||
nix develop --command -- docker run \
|
nix develop --command -- docker run \
|
||||||
--tty --rm \
|
--tty --rm \
|
||||||
--volume ~/.cache/hs-integration-go:/go \
|
--volume ~/.cache/hs-integration-go:/go \
|
||||||
|
|
|
@ -35,8 +35,11 @@ jobs:
|
||||||
config-example.yaml
|
config-example.yaml
|
||||||
|
|
||||||
- name: Run TestSSHUserOnlyIsolation
|
- name: Run TestSSHUserOnlyIsolation
|
||||||
|
uses: Wandalen/wretry.action@master
|
||||||
if: steps.changed-files.outputs.any_changed == 'true'
|
if: steps.changed-files.outputs.any_changed == 'true'
|
||||||
run: |
|
with:
|
||||||
|
attempt_limit: 5
|
||||||
|
command: |
|
||||||
nix develop --command -- docker run \
|
nix develop --command -- docker run \
|
||||||
--tty --rm \
|
--tty --rm \
|
||||||
--volume ~/.cache/hs-integration-go:/go \
|
--volume ~/.cache/hs-integration-go:/go \
|
||||||
|
|
|
@ -35,8 +35,11 @@ jobs:
|
||||||
config-example.yaml
|
config-example.yaml
|
||||||
|
|
||||||
- name: Run TestTaildrop
|
- name: Run TestTaildrop
|
||||||
|
uses: Wandalen/wretry.action@master
|
||||||
if: steps.changed-files.outputs.any_changed == 'true'
|
if: steps.changed-files.outputs.any_changed == 'true'
|
||||||
run: |
|
with:
|
||||||
|
attempt_limit: 5
|
||||||
|
command: |
|
||||||
nix develop --command -- docker run \
|
nix develop --command -- docker run \
|
||||||
--tty --rm \
|
--tty --rm \
|
||||||
--volume ~/.cache/hs-integration-go:/go \
|
--volume ~/.cache/hs-integration-go:/go \
|
||||||
|
|
|
@ -35,8 +35,11 @@ jobs:
|
||||||
config-example.yaml
|
config-example.yaml
|
||||||
|
|
||||||
- name: Run TestTailscaleNodesJoiningHeadcale
|
- name: Run TestTailscaleNodesJoiningHeadcale
|
||||||
|
uses: Wandalen/wretry.action@master
|
||||||
if: steps.changed-files.outputs.any_changed == 'true'
|
if: steps.changed-files.outputs.any_changed == 'true'
|
||||||
run: |
|
with:
|
||||||
|
attempt_limit: 5
|
||||||
|
command: |
|
||||||
nix develop --command -- docker run \
|
nix develop --command -- docker run \
|
||||||
--tty --rm \
|
--tty --rm \
|
||||||
--volume ~/.cache/hs-integration-go:/go \
|
--volume ~/.cache/hs-integration-go:/go \
|
||||||
|
|
|
@ -35,8 +35,11 @@ jobs:
|
||||||
config-example.yaml
|
config-example.yaml
|
||||||
|
|
||||||
- name: Run TestUserCommand
|
- name: Run TestUserCommand
|
||||||
|
uses: Wandalen/wretry.action@master
|
||||||
if: steps.changed-files.outputs.any_changed == 'true'
|
if: steps.changed-files.outputs.any_changed == 'true'
|
||||||
run: |
|
with:
|
||||||
|
attempt_limit: 5
|
||||||
|
command: |
|
||||||
nix develop --command -- docker run \
|
nix develop --command -- docker run \
|
||||||
--tty --rm \
|
--tty --rm \
|
||||||
--volume ~/.cache/hs-integration-go:/go \
|
--volume ~/.cache/hs-integration-go:/go \
|
||||||
|
|
|
@ -56,8 +56,11 @@ jobs:
|
||||||
config-example.yaml
|
config-example.yaml
|
||||||
|
|
||||||
- name: Run {{.Name}}
|
- name: Run {{.Name}}
|
||||||
|
uses: Wandalen/wretry.action@master
|
||||||
if: steps.changed-files.outputs.any_changed == 'true'
|
if: steps.changed-files.outputs.any_changed == 'true'
|
||||||
run: |
|
with:
|
||||||
|
attempt_limit: 5
|
||||||
|
command: |
|
||||||
nix develop --command -- docker run \
|
nix develop --command -- docker run \
|
||||||
--tty --rm \
|
--tty --rm \
|
||||||
--volume ~/.cache/hs-integration-go:/go \
|
--volume ~/.cache/hs-integration-go:/go \
|
||||||
|
|
Loading…
Add table
Reference in a new issue