Skip to content

Commit

Permalink
Caddy server! (#71)
Browse files Browse the repository at this point in the history
* Caddy test

* Caddy test
  • Loading branch information
eirikb authored Jul 14, 2024
1 parent 09c2ab6 commit a8626b7
Show file tree
Hide file tree
Showing 3 changed files with 4 additions and 3 deletions.
4 changes: 2 additions & 2 deletions .github/workflows/gg.yml
Original file line number Diff line number Diff line change
Expand Up @@ -256,7 +256,7 @@ jobs:
strategy:
matrix:
os: [ ubuntu-20.04, ubuntu-22.04, windows-2019, windows-2022, macOS-12 ]
cmd: [ "node -v", "java -version", "gradle -version", "maven -v", "openapi version", "rat -V", "run:java@14 java -version", "deno -V" ]
cmd: [ "node -v", "java -version", "gradle -version", "maven -v", "openapi version", "rat -V", "run:java@14 java -version", "deno -V", "caddy -v" ]

runs-on: ${{ matrix.os }}
steps:
Expand Down Expand Up @@ -301,7 +301,7 @@ jobs:
strategy:
matrix:
os: [ windows-2019, windows-2022 ]
cmd: [ "node -v", "java -version", "gradle -version", "maven -v", "openapi version", "rat -V", "run:java@14 java -version", "deno -V" ]
cmd: [ "node -v", "java -version", "gradle -version", "maven -v", "openapi version", "rat -V", "run:java@14 java -version", "deno -V", "caddy -v" ]

runs-on: ${{ matrix.os }}
steps:
Expand Down
2 changes: 1 addition & 1 deletion src/stage4/src/executors/caddy.rs
Original file line number Diff line number Diff line change
Expand Up @@ -29,7 +29,7 @@ impl Executor for Caddy {
Some(Windows)
} else if asset.name.contains("linux") {
Some(Os::Linux)
} else if asset.name.contains("apple") {
} else if asset.name.contains("mac") {
Some(Os::Mac)
} else {
None
Expand Down
1 change: 1 addition & 0 deletions src/stage4/src/main.rs
Original file line number Diff line number Diff line change
Expand Up @@ -63,6 +63,7 @@ Supported systems:
deno
run (any arbitrary command)
go
caddy
");
}

Expand Down

0 comments on commit a8626b7

Please sign in to comment.