Skip to content

Commit

Permalink
Install nss on macos CI
Browse files Browse the repository at this point in the history
  • Loading branch information
owenthereal committed Sep 3, 2023
1 parent a3c5f9d commit a1d4f8c
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 3 deletions.
6 changes: 4 additions & 2 deletions .github/workflows/ci.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,6 @@ jobs:
with:
go-version-file: go.mod
check-latest: true
id: go
- name: Compile
run: make install
test:
Expand All @@ -33,7 +32,10 @@ jobs:
with:
go-version-file: go.mod
check-latest: true
id: go
- name: Install certutil on macos
if: ${{ matrix.os == 'macos-latest' }}
run: |
brew install nss
- name: Test
run: make test
vet:
Expand Down
2 changes: 1 addition & 1 deletion caddy/server.go
Original file line number Diff line number Diff line change
Expand Up @@ -70,7 +70,7 @@ func (c *caddyServer) waitForServer(ctx context.Context) error {
if err == nil {
return nil
} else {
c.cfg.Logger.Error("error waiting for Caddy server", zap.Error(err))
c.cfg.Logger.Debug("error waiting for Caddy server", zap.Error(err))
}
}
}
Expand Down

0 comments on commit a1d4f8c

Please sign in to comment.