ci: use dedicated host deploy runner
This commit is contained in:
parent
da9a5a942d
commit
d00a7b3b80
3 changed files with 34 additions and 20 deletions
|
|
@ -275,10 +275,15 @@ describe("workspace boundaries", () => {
|
|||
expect(workflow).toContain("bun run test");
|
||||
expect(workflow).toContain("bun run build");
|
||||
expect(workflow).toContain("needs: ci");
|
||||
expect(workflow).toContain("options: --security-opt label=disable");
|
||||
expect(workflow).toContain("runs-on: deploy");
|
||||
expect(workflow).toContain("github.event_name == 'push'");
|
||||
expect(workflow).toContain("github.ref == 'refs/heads/main'");
|
||||
expect(workflow).toContain("docker inspect dimensionlab-website");
|
||||
expect(workflow).toContain(
|
||||
"git remote add origin git@git.dimensionlab.net:vince/dimensionlab-website.git",
|
||||
);
|
||||
expect(workflow).toContain('git fetch --force --prune --depth=1 origin "$GITHUB_SHA"');
|
||||
expect(workflow).toContain("podman inspect dimensionlab-website");
|
||||
expect(workflow).toContain("DEPLOY_CONTAINER_CLI: podman");
|
||||
expect(workflow).toContain("PODMAN_SYSTEMD_UNIT");
|
||||
expect(workflow).toContain("scripts/deploy-dimensionlab-website.sh");
|
||||
});
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue