Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
14 changes: 14 additions & 0 deletions .github/workflows/linux-aarch64.yml
Original file line number Diff line number Diff line change
Expand Up @@ -58,6 +58,20 @@ jobs:
- name: test-simplestl-simplemath
run: cd build-simplestl-simplemath && ctest --output-on-failure -j $(nproc)

asan:
runs-on: ubuntu-24.04-arm
steps:
- uses: actions/checkout@v5
- name: build
run: |
mkdir build && cd build
cmake -DCMAKE_BUILD_TYPE=relwithdebinfo -DNCNN_ASAN=ON -DNCNN_BUILD_TESTS=ON -DNCNN_SHARED_LIB=ON -DNCNN_BUILD_TOOLS=OFF -DNCNN_BUILD_EXAMPLES=OFF ..
cmake --build . -j $(nproc)
- name: test
run: |
cd build
ctest --output-on-failure -j $(nproc)

aarch64:
runs-on: ubuntu-24.04
steps:
Expand Down
42 changes: 0 additions & 42 deletions .github/workflows/linux-x64-cpu-gcc-san.yml

This file was deleted.

14 changes: 14 additions & 0 deletions .github/workflows/linux-x64-cpu-gcc.yml
Original file line number Diff line number Diff line change
Expand Up @@ -84,6 +84,20 @@ jobs:
- name: test-noint8
run: cd build-noint8 && ctest --output-on-failure -j $(nproc)

asan:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v5
- name: build
run: |
mkdir build && cd build
cmake -DCMAKE_BUILD_TYPE=relwithdebinfo -DNCNN_ASAN=ON -DNCNN_BUILD_TESTS=ON -DNCNN_SHARED_LIB=ON -DNCNN_BUILD_TOOLS=OFF -DNCNN_BUILD_EXAMPLES=OFF ..
cmake --build . -j $(nproc)
- name: test
run: |
cd build
ctest --output-on-failure -j $(nproc)

linux-gcc-cpp03-nostdio-nostring-simplestl:
runs-on: ubuntu-latest
steps:
Expand Down
Loading