Skip to content

Commit

Permalink
Fix CI pipeline (#288)
Browse files Browse the repository at this point in the history
* CI: Use ubuntu-22.04

* CI: Use system python
  • Loading branch information
speleo3 committed May 19, 2023
1 parent a3f3dd1 commit 17be7d0
Showing 1 changed file with 11 additions and 18 deletions.
29 changes: 11 additions & 18 deletions .github/workflows/build.yml
Original file line number Diff line number Diff line change
Expand Up @@ -5,35 +5,30 @@ on: [push]
jobs:
build:

runs-on: ubuntu-18.04
strategy:
matrix:
python-version: [3.8]
runs-on: ubuntu-22.04

steps:
- uses: actions/checkout@v2

- name: Set up Python ${{ matrix.python-version }}
uses: actions/setup-python@v2
with:
python-version: ${{ matrix.python-version }}

- name: Install python dependencies
run: |
python -m pip install --upgrade pip
pip install numpy biopython Pillow
- uses: actions/checkout@v3

- name: Install system dependencies
run: >
sudo apt-get update;
sudo apt-get install
sudo apt-get --no-install-recommends install
catch2
libfreetype6-dev
libglew-dev
libglm-dev
libmsgpack-dev
libnetcdf-dev
libpng-dev
libxml2-dev
python-is-python3
python3-biopython
python3-dev
python3-distutils
python3-numpy
python3-pil
python3-pytest
- name: Install collada2gltf
run: |
Expand All @@ -45,8 +40,6 @@ jobs:
git clone --depth 1 https://github.com/schrodinger/pymol-testing.git
git clone --depth 1 https://github.com/rcsb/mmtf-cpp.git
cp -R mmtf-cpp/include/mmtf* include/
mkdir -p include/catch2
(cd include/catch2; wget -nv https://github.com/catchorg/Catch2/releases/download/v2.12.2/catch.hpp)
- name: Build
run: |
Expand Down

0 comments on commit 17be7d0

Please sign in to comment.