Skip to content

Commit

Permalink
ci: remove CMake test
Browse files Browse the repository at this point in the history
getting 403 rate exceeded on download that are CI-specific
  • Loading branch information
scivision committed Jan 28, 2025
1 parent 4d04077 commit 95190f1
Showing 1 changed file with 5 additions and 22 deletions.
27 changes: 5 additions & 22 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -15,40 +15,23 @@ jobs:
strategy:
fail-fast: false
matrix:
os: [ubuntu-24.04, macos-latest, windows-latest]
os: [ubuntu-latest, macos-latest, windows-latest]

runs-on: ${{ matrix.os }}

steps:
- uses: actions/checkout@v4

- name: Install CMake
run: cmake -Dprefix:PATH=~/cmake -P scripts/install_cmake.cmake

- name: CMake path (linux)
if: runner.os == 'Linux'
run: |
echo "$HOME/cmake/bin" >> $GITHUB_PATH
- name: CMake path (macOS)
if: runner.os == 'macOS'
run: |
echo "$HOME/cmake/CMake.app/Contents/bin" >> $GITHUB_PATH
- name: CMake path (Windows)
if: runner.os == 'Windows'
run: |
echo "$env:userprofile/cmake/bin" | Out-File -FilePath $env:GITHUB_PATH -Encoding utf8 -Append
- run: echo $PATH

- run: cmake --version

- name: set macOS Gfortran
if: runner.os == 'macOS'
run: echo "FC=gfortran-14" >> $GITHUB_ENV

- name: configure cmake (w/ Fortran)
if: runner.os != 'Windows'
run: cmake --preset default
env:
FC: gfortran-14

- name: configure CMake (w/o Fortran)
if: runner.os == 'Windows'
Expand Down

0 comments on commit 95190f1

Please sign in to comment.