-
Notifications
You must be signed in to change notification settings - Fork 4.2k
67 lines (65 loc) · 1.49 KB
/
linux-x64-cpu-gcc-musl.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
name: linux-x64-cpu-gcc-musl
on:
push:
branches: [master]
paths:
- '.github/workflows/linux-x64-cpu-gcc-musl.yml'
- 'toolchains/host-c.gcc.toolchain.cmake'
- 'CMakeLists.txt'
- 'cmake/**'
- 'src/*'
- 'src/layer/*'
- 'src/layer/x86/**'
- 'tests/**'
- 'tools/**'
- '!tools/pnnx/**'
- 'examples/**'
pull_request:
branches: [master]
paths:
- '.github/workflows/linux-x64-cpu-gcc-musl.yml'
- 'toolchains/host-c.gcc.toolchain.cmake'
- 'CMakeLists.txt'
- 'cmake/**'
- 'src/*'
- 'src/layer/*'
- 'src/layer/x86/**'
- 'tests/**'
- 'tools/**'
- '!tools/pnnx/**'
- 'examples/**'
concurrency:
group: linux-x64-cpu-gcc-musl-${{ github.ref }}
cancel-in-progress: true
permissions:
contents: read
jobs:
linux-gcc-musl:
runs-on: ubuntu-latest
steps:
- uses: jirutka/setup-alpine@v1
with:
packages: >
cmake
clang
clang-dev
make
gcc
g++
libc-dev
linux-headers
- uses: actions/checkout@v4
- name: build
shell: alpine.sh {0}
run: |
mkdir build && cd build
cmake -DNCNN_BUILD_TESTS=ON ..
cmake --build . -j $(nproc)
- name: test
shell: alpine.sh {0}
run: cd build && ctest --output-on-failure -j $(nproc)
- name: build-shared
run: |
mkdir build-shared && cd build-shared
cmake -DNCNN_SHARED_LIB=ON ..
cmake --build . -j $(nproc)