ithewei hace 2 años
padre
commit
ff66700ade
Se han modificado 3 ficheros con 6 adiciones y 6 borrados
  1. 3 3
      .github/workflows/CI.yml
  2. 1 1
      .github/workflows/benchmark.yml
  3. 2 2
      Makefile

+ 3 - 3
.github/workflows/CI.yml

@@ -14,7 +14,7 @@ jobs:
     name: build-linux
     runs-on: ubuntu-latest
     steps:
-      - uses: actions/checkout@v2
+      - uses: actions/checkout@v3
 
       - name: build
         run: |
@@ -32,7 +32,7 @@ jobs:
     name: build-windows
     runs-on: windows-latest
     steps:
-      - uses: actions/checkout@v2
+      - uses: actions/checkout@v3
       - name: build
         run: |
           mkdir cmake-build-win64
@@ -44,7 +44,7 @@ jobs:
     name: build-apple
     runs-on: macos-latest
     steps:
-      - uses: actions/checkout@v2
+      - uses: actions/checkout@v3
 
       - name: build-mac
         run: |

+ 1 - 1
.github/workflows/benchmark.yml

@@ -14,7 +14,7 @@ jobs:
     name: benchmark
     runs-on: ubuntu-latest
     steps:
-      - uses: actions/checkout@v2
+      - uses: actions/checkout@v3
 
       - name: prepare
         run: |

+ 2 - 2
Makefile

@@ -150,7 +150,7 @@ tinyhttpd: prepare
 tinyproxyd: prepare
 	$(MAKEF) TARGET=$@ SRCDIRS="$(CORE_SRCDIRS)" SRCS="examples/tinyproxyd.c"
 
-nmap: prepare
+nmap: prepare libhv
 	$(MAKEF) TARGET=$@ SRCDIRS="$(CORE_SRCDIRS) cpputil examples/nmap" DEFINES="PRINT_DEBUG"
 
 wrk: prepare
@@ -160,7 +160,7 @@ httpd: prepare
 	$(RM) examples/httpd/*.o
 	$(MAKEF) TARGET=$@ SRCDIRS="$(CORE_SRCDIRS) util cpputil evpp http http/client http/server examples/httpd"
 
-consul: prepare
+consul: prepare libhv
 	$(MAKEF) TARGET=$@ SRCDIRS="$(CORE_SRCDIRS) util cpputil evpp http http/client examples/consul" DEFINES="PRINT_DEBUG"
 
 curl: prepare