Skip to content

Commit

Permalink
Attempt to work around issues with github hosted runner
Browse files Browse the repository at this point in the history
- The Ubuntu build and install fails possibly due to this:
actions/runner-images#10636
- On MacOS `brew` fails to install pkgconfig: apache/arrow#44820
  • Loading branch information
subhacom committed Nov 25, 2024
1 parent 169bb0c commit c97ad21
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 8 deletions.
6 changes: 1 addition & 5 deletions .github/workflows/package.yml
Original file line number Diff line number Diff line change
Expand Up @@ -25,11 +25,7 @@ jobs:
if: ${{ runner.os == 'macOS' }}
run: |
brew install gsl
brew install hdf5
brew install graphviz
brew install doxygen
brew install pkg-config
brew install hdf5
- name: Windows dependencies
if: ${{ runner.os == 'Windows' }}
uses: mamba-org/setup-micromamba@v1
Expand Down
5 changes: 2 additions & 3 deletions .github/workflows/pymoose.yml
Original file line number Diff line number Diff line change
Expand Up @@ -8,11 +8,10 @@ jobs:
strategy:
fail-fast: false
matrix:
os: [ubuntu-latest, macos-14, windows-latest]
os: [ubuntu-22.04, macos-14, windows-latest]
build_type: [Release]
c_compiler: [clang]
python-version: ["3.8"]
# python-version: ["3.8", "3.9", "3.10", "3.11", "3.12", "3.13"]
python-version: ["3.12"]
include:
- os: ubuntu-latest
apt: 10
Expand Down

0 comments on commit c97ad21

Please sign in to comment.