diff --git a/.github/workflows/publish_to_pypi.yml b/.github/workflows/publish_to_pypi.yml index 65ae592..a3f2ad3 100644 --- a/.github/workflows/publish_to_pypi.yml +++ b/.github/workflows/publish_to_pypi.yml @@ -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' @@ -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'