Make changes to run MNIST #686
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: Static analysis | |
on: [pull_request] | |
jobs: | |
clang-tidy: | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v4 | |
with: | |
submodules: true | |
- name: Install prerequisites | |
run: | | |
sudo apt install clang libomp-dev | |
- name: Download and extract TensorFlow | |
run: | | |
wget https://storage.googleapis.com/tensorflow/libtensorflow/libtensorflow-cpu-linux-x86_64-2.7.0.tar.gz | |
tar -xzvf libtensorflow-cpu-linux-x86_64-2.7.0.tar.gz | |
- name: Set TensorFlow environment variables | |
run: | | |
echo "TensorFlow_INCLUDE_DIRS=${PWD}/include" >> $GITHUB_ENV | |
echo "TensorFlow_LIBRARIES=${PWD}/lib/libtensorflow.so" >> $GITHUB_ENV | |
echo "export TensorFlow_INCLUDE_DIRS=${PWD}/include" >> $GITHUB_ENV | |
echo "export TensorFlow_LIBRARIES=${PWD}/lib/libtensorflow.so" >> $GITHUB_ENV | |
- name: Display TensorFlow environment variables | |
run: | | |
echo "TensorFlow_INCLUDE_DIRS: ${{ env.TensorFlow_INCLUDE_DIRS }}" | |
echo "TensorFlow_LIBRARIES: ${{ env.TensorFlow_LIBRARIES }}" | |
- name: Setup ccache | |
uses: hendrikmuhs/[email protected] | |
with: | |
key: ccache-${{ github.job }} | |
- name: Build | |
run: | | |
cmake -S . -B build \ | |
-DCMAKE_C_COMPILER_LAUNCHER=ccache \ | |
-DCMAKE_CXX_COMPILER_LAUNCHER=ccache \ | |
-DCMAKE_C_COMPILER=clang \ | |
-DCMAKE_CXX_COMPILER=clang++ \ | |
-DCMAKE_EXPORT_COMPILE_COMMANDS=ON \ | |
-DTensorFlow_INCLUDE_DIRS=$TensorFlow_INCLUDE_DIRS \ | |
-DTensorFlow_LIBRARIES=$TensorFlow_LIBRARIES | |
cmake --build build --parallel | |
- name: Run clang-tidy | |
run: | | |
clang-tidy app/**/*.cpp src/**/*.cpp -format-style=file -header-filter="($PWD/include/.*|$PWD/src/.*|$PWD/app/.*)" -p build |