Skip to content

Commit

Permalink
fix: fix workflow
Browse files Browse the repository at this point in the history
  • Loading branch information
yoctoyotta1024 committed Oct 30, 2024
1 parent 6dd7af2 commit a27bb93
Showing 1 changed file with 11 additions and 3 deletions.
14 changes: 11 additions & 3 deletions .github/workflows/build.yml
Original file line number Diff line number Diff line change
Expand Up @@ -96,16 +96,24 @@ jobs:

compile_adia0d:
runs-on: ubuntu-latest
needs: [build, compile]
needs: build
steps:
- name: Checkout
uses: actions/checkout@v4

- name: Retrieve CLEO Build
- name: Setup
run: |
sudo apt-get update
sudo apt-get install -y \
cmake libnetcdff-dev liblapack-dev python3-dev \
python3-numpy python3-mpi4py python3-pip curl \
libfyaml-dev libopenmpi-dev openmpi-bin
- name: Restore CLEO Build Cache
uses: actions/cache@v4
with:
name: cleo-build-cache
path: ./build/
key: ${{ runner.os }}-cleo-build-${{ hashFiles('./build/**') }}

- name: Build adia0d
run: cd build && make adia0d
Expand Down

0 comments on commit a27bb93

Please sign in to comment.