forked from ithewei/libhv
-
Notifications
You must be signed in to change notification settings - Fork 0
60 lines (50 loc) · 1.28 KB
/
CI.yml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
name: CI
on:
push:
paths-ignore:
- '**.md'
pull_request:
paths-ignore:
- '**.md'
jobs:
build-linux:
name: build-linux
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v2
- name: build
run: |
sudo apt update
sudo apt install libssl-dev libnghttp2-dev
./configure --with-openssl --with-nghttp2
make libhv evpp
- name: test
run: |
make check
make run-unittest
build-windows:
name: build-windows
runs-on: windows-latest
steps:
- uses: actions/checkout@v2
- name: build
run: |
mkdir cmake-build-win64
cd cmake-build-win64
cmake .. -G "Visual Studio 17 2022" -A x64
cmake --build .
build-apple:
name: build-apple
runs-on: macos-latest
steps:
- uses: actions/checkout@v2
- name: build-mac
run: |
./configure
make libhv evpp examples unittest
- name: build-ios
run: |
mkdir cmake-build-ios
cd cmake-build-ios
cmake .. -G Xcode -DCMAKE_TOOLCHAIN_FILE=../cmake/ios.toolchain.cmake -DPLATFORM=OS -DDEPLOYMENT_TARGET=9.0 -DARCHS="arm64"
cmake --build . --target hv_static --config Release