Skip to content

removed bug in neighbour list output file allocation #248

removed bug in neighbour list output file allocation

removed bug in neighbour list output file allocation #248

Workflow file for this run

name: C CI
on:
push:
pull_request:
jobs:
build:
runs-on: ubuntu-latest
env:
FORCE_JAVASCRIPT_ACTIONS_TO_NODE24: true
steps:
- name: Checkout
uses: actions/checkout@v4
with:
submodules: recursive
- name: Verify submodules
run: |
git submodule status --recursive
test -f POPSC/gemmi/include/gemmi/cif.hpp
- name: Install build dependencies
run: |
sudo apt-get update
sudo apt-get install -y \
autoconf \
automake \
libtool \
pkg-config \
g++ \
make \
libxml2-dev \
zlib1g-dev
- name: Compile POPSC
run: |
cd POPSC
./bootstrap
./configure
make -j"$(nproc)" V=1
- name: Run tests
run: |
cd POPSC
make check