interface computation works #230
Workflow file for this run
This file contains hidden or 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: 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 |