Skip to content

Commit ec9f7d4

Browse files
committed
Remove libmicrohttpd in favor of libevent
Signed-off-by: Tristan Partin <[email protected]>
1 parent a7c8711 commit ec9f7d4

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

44 files changed

+2570
-3308
lines changed
Lines changed: 22 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,22 @@
1+
name: OpenAPI
2+
3+
on:
4+
pull_request:
5+
types: [opened, synchronize, reopened]
6+
paths-ignore:
7+
- .spectal.yaml
8+
- docs/openapi.yaml
9+
10+
concurrency:
11+
group: ${{ github.workflow }}-ignore-${{ github.head_ref }}
12+
cancel-in-progress: true
13+
14+
permissions: {}
15+
16+
jobs:
17+
lint:
18+
runs-on: ubuntu-latest
19+
20+
steps:
21+
- run: |
22+
echo "Skipping ${{ github.workflow }}/${{ github.job }}"

.github/workflows/openapi.yaml

Lines changed: 25 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,25 @@
1+
name: OpenAPI
2+
3+
on:
4+
pull_request:
5+
types: [opened, synchronize, reopened]
6+
paths:
7+
- .spectal.yaml
8+
- docs/openapi.yaml
9+
10+
concurrency:
11+
group: ${{ github.workflow }}-${{ github.head_ref }}
12+
cancel-in-progress: true
13+
14+
permissions: {}
15+
16+
jobs:
17+
lint:
18+
runs-on: ubuntu-latest
19+
20+
steps:
21+
- uses: actions/checkout@v3
22+
23+
- uses: stoplightio/spectral-action@latest
24+
with:
25+
file_glob: docs/openapi.yaml

.spectral.yaml

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1 @@
1+
extends: spectral:oas

cli/cli_util.c

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,6 @@
1111
#include <hse_util/hse_err.h>
1212
#include <hse_util/inttypes.h>
1313
#include <hse_util/yaml.h>
14-
#include <hse_util/rest_api.h>
1514
#include <hse_util/arch.h>
1615
#include <hse_util/parse_num.h>
1716

0 commit comments

Comments
 (0)