Skip to content

Commit

Permalink
[ci] remove libatlas from install; reorder
Browse files Browse the repository at this point in the history
  • Loading branch information
JohannesBuchner committed Jul 27, 2023
1 parent a757087 commit f95367e
Showing 1 changed file with 14 additions and 14 deletions.
28 changes: 14 additions & 14 deletions .github/workflows/test.yml
Original file line number Diff line number Diff line change
Expand Up @@ -24,22 +24,9 @@ jobs:
shell: bash -l {0}

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

- uses: conda-incubator/setup-miniconda@v2
with:
auto-update-conda: false
channels: conda-forge
python-version: ${{ matrix.python-version }}
mamba-version: "*"

- name: Install build dependencies
run: |
sudo apt-get update && sudo apt-get -y --no-install-recommends install -y -qq libblas{3,-dev} liblapack{3,-dev} libatlas{,-base-dev} cmake build-essential git gfortran
sudo apt-get update && sudo apt-get -y --no-install-recommends install -y -qq libblas{3,-dev} liblapack{3,-dev} libatlas-base-dev cmake build-essential git gfortran
- name: Install openmpi
if: ${{ matrix.MPI == 'openmpi' }}
Expand All @@ -55,6 +42,19 @@ jobs:
update-alternatives --list mpi|grep "$WITHMPI" | xargs -rt sudo update-alternatives --set mpi;
update-alternatives --list mpirun|grep "$WITHMPI" | xargs -rt sudo update-alternatives --set mpirun;
- uses: actions/checkout@v2
- name: Set up Python ${{ matrix.python-version }}
uses: actions/setup-python@v2
with:
python-version: ${{ matrix.python-version }}

- uses: conda-incubator/setup-miniconda@v2
with:
auto-update-conda: false
channels: conda-forge
python-version: ${{ matrix.python-version }}
mamba-version: "*"

- name: Install python dependencies
run: |
mamba install --quiet --file conda-requirements.txt corner
Expand Down

0 comments on commit f95367e

Please sign in to comment.