Skip to content
Closed
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 2 additions & 0 deletions .dockerignore
Original file line number Diff line number Diff line change
Expand Up @@ -6,4 +6,6 @@
!src
!josh-ui
!josh-proxy
!josh-rpc
!josh-ssh-shell
!hyper_cgi
23 changes: 23 additions & 0 deletions .github/workflows/go.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,23 @@
name: go

on:
push:
branches: [ master ]
pull_request:
branches: [ master ]

jobs:
build:
runs-on: ubuntu-latest
steps:
- name: Checkout
uses: actions/checkout@v3
with:
fetch-depth: 0
- uses: actions/setup-go@v3
with:
go-version: '^1.19.2'
- name: Verify dependencies
run: cd josh-ssh-dev-server && go mod verify
- name: Build
run: cd josh-ssh-dev-server && go build
63 changes: 63 additions & 0 deletions Cargo.lock

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

3 changes: 2 additions & 1 deletion Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@ search = []
experimental = ["search"]

[workspace]
members = ["josh-proxy", "josh-ui", ".", "hyper_cgi"]
members = ["josh-proxy", "josh-ui", "josh-ssh-shell", "josh-rpc", ".", "hyper_cgi"]

[dependencies]
backtrace = "0.3.66"
Expand Down Expand Up @@ -45,6 +45,7 @@ serde_json= "1.0.87"
serde_yaml = "0.9.14"
sled = "0.34.7"
strfmt = "0.2.2"
tokio-util = "0.7.4"
toml= "0.5.9"
tracing = "0.1.37"
tracing-log = "0.1.3"
Expand Down
4 changes: 3 additions & 1 deletion josh-proxy/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -22,7 +22,7 @@ hyper-staticfile = "0.9.1"
hyper-tls = "0.5.0"
hyper_cgi = {path = "../hyper_cgi"}
indoc = "1.0.7"
josh = {path = "../"}
josh = {path = ".." }
juniper = { version = "0.15.10", features = ["expose-test-schema"] }
lazy_static = "1.4.0"
opentelemetry = "0.18.0"
Expand All @@ -42,3 +42,5 @@ tracing-subscriber = { version = "0.3.16", features = ["env-filter"] }
unindent = "0.1.10"
url = "2.3.1"
uuid = { version = "1.2.1", features = ["v4"] }
josh-rpc = { path = "../josh-rpc" }
tokio-util = "0.7.4"
Loading