DRAFT : Register memory #4731
Workflow file for this run
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
name: Linter | |
on: [push, pull_request] | |
env: | |
OPEN_UCX_LINK: https://github.com/openucx/ucx | |
OPEN_UCX_BRANCH: master | |
CLANG_VER: 12 | |
jobs: | |
clang-tidy: | |
runs-on: ubuntu-20.04 | |
steps: | |
- name: Install dependencies | |
run: | | |
sudo apt-get update | |
sudo apt-get install -y --no-install-recommends wget lsb-core software-properties-common | |
wget -O - https://apt.llvm.org/llvm-snapshot.gpg.key| sudo apt-key add - | |
sudo apt-add-repository "deb http://apt.llvm.org/focal/ llvm-toolchain-focal-${CLANG_VER} main" | |
sudo apt-get install -y --no-install-recommends doxygen doxygen-latex clang-tidy-${CLANG_VER} bear | |
- name: Get UCX | |
run: git clone ${OPEN_UCX_LINK} -b ${OPEN_UCX_BRANCH} /tmp/ucx | |
- name: Build UCX | |
run: | | |
cd /tmp/ucx && ./autogen.sh | |
CC=clang-${CLANG_VER} CXX=clang++-${CLANG_VER} ./contrib/configure-release --without-java --without-go --disable-numa --prefix $PWD/install | |
make -j install | |
- uses: actions/checkout@v1 | |
- name: Build UCC | |
run: | | |
./autogen.sh | |
CC=clang-${CLANG_VER} CXX=clang++-${CLANG_VER} ./configure --prefix=/tmp/ucc/install --with-ucx=/tmp/ucx/install --enable-assert | |
bear --cdb /tmp/compile_commands.json make | |
- name: Run clang-tidy | |
run: | | |
echo "Workspace: ${GITHUB_WORKSPACE}" | |
cd ${GITHUB_WORKSPACE} | |
run-clang-tidy-${CLANG_VER} -p /tmp/ 2>&1 | tee /tmp/clang_tidy.log | |
nerrors=$(grep 'error:' /tmp/clang_tidy.log | wc -l) | |
if [ $nerrors -ne 0 ]; then | |
exit 125; | |
fi | |
make clean | |
rm -rf /tmp/ucc | |
- name: Run gtest ASAN | |
run: | | |
cd ${GITHUB_WORKSPACE} | |
ls -la | |
echo $PWD | |
./autogen.sh | |
CC=clang-${CLANG_VER} CXX=clang++-${CLANG_VER} ./configure CFLAGS="-fsanitize=address" --prefix=/tmp/ucc/install --with-ucx=/tmp/ucx/install --enable-gtest | |
make -j install | |
./test/gtest/gtest |