forked from trcrsired/fast_io
-
Notifications
You must be signed in to change notification settings - Fork 0
114 lines (100 loc) · 4.37 KB
/
c-cpp.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
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
name: C/C++ CI
on:
push:
branches: ["master", "next"]
pull_request:
branches: ["master", "next"]
jobs:
ubuntu:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- name: Install ninja-build tool
uses: seanmiddleditch/gha-setup-ninja@v5
- name: Generate tests
run: |
cmake -B fast_io_prebuild -S . -G Ninja -DCMAKE_BUILD_TYPE=Release -DENABLE_TESTS=On -DTESTS_PREBUILD=On
cmake --build fast_io_prebuild
./fast_io_prebuild/tests_prebuild linux
- name: CMake configure
run: cmake -B fast_io_build -S . -G Ninja -DCMAKE_BUILD_TYPE=Release -DCMAKE_CXX_FLAGS="-fsanitize=address,undefined -Wall -Wextra -Wpedantic -Wshadow -Wconversion -Werror" -DENABLE_TESTS=On
- name: CMake build
run: cmake --build fast_io_build
- name: CMake test
run: cmake --build fast_io_build --target test
windows:
runs-on: windows-latest
steps:
- uses: actions/checkout@v4
- uses: ilammy/[email protected]
- name: Generate tests
run: |
cmake -B fast_io_prebuild -S . -G Ninja -DCMAKE_BUILD_TYPE=Release -DENABLE_TESTS=On -DTESTS_PREBUILD=On
cmake --build fast_io_prebuild
./fast_io_prebuild/tests_prebuild windows msvc
- name: CMake configure
run: cmake -B fast_io_build -S . -G Ninja -DCMAKE_BUILD_TYPE=Release -DCMAKE_C_COMPILER=cl -DCMAKE_CXX_COMPILER=cl -DCMAKE_CXX_FLAGS="/EHsc /W3 /WX /sdl" -DENABLE_TESTS=On
- name: CMake build
run: cmake --build fast_io_build
- name: CMake test
run: cmake --build fast_io_build --target test
win7:
runs-on: windows-latest
steps:
- uses: actions/checkout@v4
- uses: ilammy/[email protected]
- name: Generate tests
run: |
cmake -B fast_io_prebuild -S . -G Ninja -DCMAKE_BUILD_TYPE=Release -DENABLE_TESTS=On -DTESTS_PREBUILD=On
cmake --build fast_io_prebuild
./fast_io_prebuild/tests_prebuild windows msvc
- name: CMake configure
run: cmake -B fast_io_build -S . -G Ninja -DCMAKE_BUILD_TYPE=Release -DCMAKE_C_COMPILER=cl -DCMAKE_CXX_COMPILER=cl -DCMAKE_CXX_FLAGS="/EHsc /W3 /WX /sdl /D_WIN32_WINNT=0x601" -DENABLE_TESTS=On
- name: CMake build
run: cmake --build fast_io_build
- name: CMake test
run: cmake --build fast_io_build --target test
winxp:
runs-on: windows-latest
steps:
- uses: actions/checkout@v4
- uses: ilammy/[email protected]
- name: Generate tests
run: |
cmake -B fast_io_prebuild -S . -G Ninja -DCMAKE_BUILD_TYPE=Release -DENABLE_TESTS=On -DTESTS_PREBUILD=On
cmake --build fast_io_prebuild
./fast_io_prebuild/tests_prebuild windows msvc
- name: CMake configure
run: cmake -B fast_io_build -S . -G Ninja -DCMAKE_BUILD_TYPE=Release -DCMAKE_C_COMPILER=cl -DCMAKE_CXX_COMPILER=cl -DCMAKE_CXX_FLAGS="/EHsc /W3 /WX /sdl /D_WIN32_WINNT=0x501" -DENABLE_TESTS=On
- name: CMake build
run: cmake --build fast_io_build
- name: CMake test
run: cmake --build fast_io_build --target test
win9x:
runs-on: windows-latest
steps:
- uses: actions/checkout@v4
- uses: ilammy/[email protected]
- name: Generate tests
run: |
cmake -B fast_io_prebuild -S . -G Ninja -DCMAKE_BUILD_TYPE=Release -DENABLE_TESTS=On -DTESTS_PREBUILD=On
cmake --build fast_io_prebuild
./fast_io_prebuild/tests_prebuild windows msvc
- name: CMake configure
run: cmake -B fast_io_build -S . -G Ninja -DCMAKE_BUILD_TYPE=Release -DCMAKE_C_COMPILER=cl -DCMAKE_CXX_COMPILER=cl -DCMAKE_CXX_FLAGS="/EHsc /W3 /WX /sdl /D_WIN32_WINNT=0x400 /D_WIN32_WINDOWS=0x400" -DENABLE_TESTS=On
- name: CMake build
run: cmake --build fast_io_build
- name: CMake test
run: cmake --build fast_io_build --target test
# macos:
# runs-on: macos-latest
# steps:
# - uses: actions/checkout@v3
# - name: Install ninja-build tool
# uses: seanmiddleditch/gha-setup-ninja@v4
# - name: cmake
# run: cmake -GNinja . -DCMAKE_BUILD_TYPE=Release -DENABLE_TESTS=On -DCMAKE_CXX_FLAGS="-fsanitize=address,undefined -Wall -Wextra -Wpedantic -Wmisleading-indentation -Wunused -Wuninitialized -Wshadow -Wconversion -Werror"
# - name: ninja
# run: ninja
# - name: ninja test
# run: ninja test