Skip to content

Commit ff66700

Browse files
committed
Update
1 parent aee9703 commit ff66700

File tree

3 files changed

+6
-6
lines changed

3 files changed

+6
-6
lines changed

Diff for: .github/workflows/CI.yml

+3-3
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,7 @@ jobs:
1414
name: build-linux
1515
runs-on: ubuntu-latest
1616
steps:
17-
- uses: actions/checkout@v2
17+
- uses: actions/checkout@v3
1818

1919
- name: build
2020
run: |
@@ -32,7 +32,7 @@ jobs:
3232
name: build-windows
3333
runs-on: windows-latest
3434
steps:
35-
- uses: actions/checkout@v2
35+
- uses: actions/checkout@v3
3636
- name: build
3737
run: |
3838
mkdir cmake-build-win64
@@ -44,7 +44,7 @@ jobs:
4444
name: build-apple
4545
runs-on: macos-latest
4646
steps:
47-
- uses: actions/checkout@v2
47+
- uses: actions/checkout@v3
4848

4949
- name: build-mac
5050
run: |

Diff for: .github/workflows/benchmark.yml

+1-1
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,7 @@ jobs:
1414
name: benchmark
1515
runs-on: ubuntu-latest
1616
steps:
17-
- uses: actions/checkout@v2
17+
- uses: actions/checkout@v3
1818

1919
- name: prepare
2020
run: |

Diff for: Makefile

+2-2
Original file line numberDiff line numberDiff line change
@@ -150,7 +150,7 @@ tinyhttpd: prepare
150150
tinyproxyd: prepare
151151
$(MAKEF) TARGET=$@ SRCDIRS="$(CORE_SRCDIRS)" SRCS="examples/tinyproxyd.c"
152152

153-
nmap: prepare
153+
nmap: prepare libhv
154154
$(MAKEF) TARGET=$@ SRCDIRS="$(CORE_SRCDIRS) cpputil examples/nmap" DEFINES="PRINT_DEBUG"
155155

156156
wrk: prepare
@@ -160,7 +160,7 @@ httpd: prepare
160160
$(RM) examples/httpd/*.o
161161
$(MAKEF) TARGET=$@ SRCDIRS="$(CORE_SRCDIRS) util cpputil evpp http http/client http/server examples/httpd"
162162

163-
consul: prepare
163+
consul: prepare libhv
164164
$(MAKEF) TARGET=$@ SRCDIRS="$(CORE_SRCDIRS) util cpputil evpp http http/client examples/consul" DEFINES="PRINT_DEBUG"
165165

166166
curl: prepare

0 commit comments

Comments
 (0)