From f95367e0b712ed04ae9a4c8383f2332066c22453 Mon Sep 17 00:00:00 2001 From: Johannes Buchner Date: Thu, 27 Jul 2023 11:18:48 -0400 Subject: [PATCH] [ci] remove libatlas from install; reorder --- .github/workflows/test.yml | 28 ++++++++++++++-------------- 1 file changed, 14 insertions(+), 14 deletions(-) diff --git a/.github/workflows/test.yml b/.github/workflows/test.yml index 1890e2f..4b9f75a 100644 --- a/.github/workflows/test.yml +++ b/.github/workflows/test.yml @@ -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' }} @@ -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