Skip to content

quality-of-life fixes: clang-format, clang-static-analyzer, pre-commit #34

quality-of-life fixes: clang-format, clang-static-analyzer, pre-commit

quality-of-life fixes: clang-format, clang-static-analyzer, pre-commit #34

Workflow file for this run

name: PR CI
on: [push, pull_request]
env:
APT_PACKAGES: >-
build-essential
clang
gcc
git
libhwloc-dev
make
jobs:
distcheck:
runs-on: ubuntu-22.04
strategy:
matrix:
cc:
- gcc
- clang
sdk:
- cuda
- neuron
fail-fast: false
steps:
- name: Install Dependencies
run: |
read -ra packages < ${{env.APT_PACKAGES}}
sudo apt-get update -y
sudo apt-get install -y "${packages[@]}"
- name: Install CUDA SDK
if: matrix.sdk == 'cuda'
run: |
sudo apt-get install -y nvidia-cuda-toolkit
- name: Install Neuron SDK
if: matrix.sdk == 'neuron'
run: |
# Configure Linux for Neuron repository updates
sudo tee /etc/apt/sources.list.d/neuron.list > /dev/null << EOF
deb https://apt.repos.neuron.amazonaws.com jammy main
EOF
wget -qO - https://apt.repos.neuron.amazonaws.com/GPG-PUB-KEY-AMAZON-AWS-NEURON.PUB | sudo apt-key add -
sudo apt update -y
# Install Neuron Runtime
sudo apt-get install aws-neuronx-runtime-lib -y
- uses: actions/checkout@v4
- name: Install Libfabric
run: |
# We're just doing distchecks, so it is fine if we
# just grab the latest master and built a lean build.
git clone --depth 1 https://github.com/ofiwg/libfabric.git
pushd libfabric
./autogen.sh
./configure --prefix="$PWD/install" \
--disable-sockets \
--disable-udp \
--disable-mrail \
--disable-opx \
CC="${{ matrix.cc }}"
make -j "$(nproc)"
make install
popd
- name: Build Plugin
run: |
set -x
# actions/checkout@v4 would drop the plugin source in $PWD,
# so go ahead and build it.
./autogen.sh
if [ "${{ matrix.sdk }}" == "cuda" ]
then
./configure --with-libfabric="$PWD/libfabric/install" \
--with-cuda=/usr/local/cuda/ \
CC="${{ matrix.cc }}"
else
./configure --with-libfabric="$PWD/libfabric/install" \
--enable-neuron \
CC="${{ matrix.cc }}"
fi
make -j "$(nproc)"
- name: Run Dist Check
run: make distcheck
- name: Upload build logs
if: failure()
uses: actions/upload-artifact@v4
with:
name: ${{ matrix.cc }}-config.log
path: config.log