Skip to content

adding reference structures for test scripts #233

adding reference structures for test scripts

adding reference structures for test scripts #233

Workflow file for this run

name: C CI
on: [push]
jobs:
build:
runs-on: ubuntu-latest
steps:
- name: Checkout
uses: actions/checkout@v4
with:
fetch-depth: 0
submodules: recursive
- name: Ensure submodules are present
run: |
git submodule sync --recursive
git submodule update --init --recursive
echo "Submodule status:"
git submodule status --recursive
echo "Checking Gemmi headers:"
ls -l POPSC/gemmi/include/gemmi/cif.hpp
- name: Install build deps
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