Skip to content

Commit

Permalink
try to add instructions to install cmake and fortran compiler across OS
Browse files Browse the repository at this point in the history
  • Loading branch information
azmyrajab committed Apr 8, 2024
1 parent 855baf2 commit b25a9bd
Showing 1 changed file with 8 additions and 0 deletions.
8 changes: 8 additions & 0 deletions .github/workflows/publish_to_pypi.yml
Original file line number Diff line number Diff line change
Expand Up @@ -70,6 +70,10 @@ jobs:
target: [x86_64, x86, aarch64, armv7]
steps:
- uses: actions/checkout@v3
- name: Install CMake and Fortran Compiler
run: |
sudo apt-get update
sudo apt-get install -y cmake gfortran
- uses: actions/setup-python@v4
with:
python-version: '3.10'
Expand All @@ -93,6 +97,10 @@ jobs:
target: [x64, x86]
steps:
- uses: actions/checkout@v3
- name: Install CMake and Fortran Compiler
run: |
choco install cmake
choco install mingw
- uses: actions/setup-python@v4
with:
python-version: '3.10'
Expand Down

0 comments on commit b25a9bd

Please sign in to comment.