Skip to content

Commit

Permalink
feat: add CI/CD infrastructure for development and deployment
Browse files Browse the repository at this point in the history
  • Loading branch information
prdnk committed Jan 6, 2025
1 parent d137aa9 commit eb2213f
Show file tree
Hide file tree
Showing 4 changed files with 44 additions and 1 deletion.
3 changes: 3 additions & 0 deletions .github/deploy/bootstrap.sh
Original file line number Diff line number Diff line change
@@ -0,0 +1,3 @@
#!/usr/bin/env bash

set -e
17 changes: 17 additions & 0 deletions .github/deploy/devbox.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,17 @@
{
"$schema": "https://raw.githubusercontent.com/jetify-com/devbox/0.13.7/.schema/devbox.schema.json",
"packages": ["go@latest", "cargo@latest", "uv@latest", "bun@latest"],
"env": {
"PATH": "$HOME/.cargo/bin:$HOME/go/bin:$HOME/.local/bin:$HOME/.bun/bin:$PATH",
"GITHUB_TOKEN": "$GITHUB_TOKEN",
"GOPATH": "$HOME/go",
"GOBIN": "$GOPATH/bin",
"GHQ_ROOT": "$CLONEDIR"
},
"shell": {
"init_hook": [],
"scripts": {
"test": ["echo \"Error: no test specified\" && exit 1"]
}
}
}
23 changes: 23 additions & 0 deletions .github/deploy/process-compose.yaml
Original file line number Diff line number Diff line change
@@ -0,0 +1,23 @@
version: "0.5"

processes:
IPFS:
namespace: testnet
command: "ipfs daemon --mount"
ready_log_line: "Daemon is ready"

Sonr:
namespace: testnet
command: "task sonrd:start"
depends_on:
IPFS:
condition: process_log_ready

Hway:
namespace: testnet
command: "hway"
depends_on:
IPFS:
condition: process_log_ready
Sonr:
condition: process_started
2 changes: 1 addition & 1 deletion .github/workflows/release-post.yml
Original file line number Diff line number Diff line change
Expand Up @@ -63,4 +63,4 @@ jobs:
restore-keys: |
mkdocs-material-
- run: pip install mkdocs-material
- run: mkdocs gh-deploy --force
- run: cd docs && mkdocs gh-deploy --force

0 comments on commit eb2213f

Please sign in to comment.