Skip to content

Commit

Permalink
try newer conda packages
Browse files Browse the repository at this point in the history
  • Loading branch information
gbarter committed Jan 28, 2025
1 parent 89f2e81 commit c7c9a5a
Showing 1 changed file with 8 additions and 9 deletions.
17 changes: 8 additions & 9 deletions .github/workflows/CI_rosco-compile.yml
Original file line number Diff line number Diff line change
Expand Up @@ -108,28 +108,31 @@ jobs:
strategy:
fail-fast: false #true
matrix:
os: ["ubuntu-latest", "macOS-13", "windows-latest"] #mac-13 intel, mac-14 arm
python-version: ["3.9", "3.10", "3.11", "3.12"]
os: ["ubuntu-latest", "macOS-13", "macOS-14", "windows-latest"] #mac-13 intel, mac-14 arm
python-version: ["3.10", "3.11", "3.12"]

steps:
- name: checkout repository
uses: actions/checkout@v4

- uses: conda-incubator/setup-miniconda@v2
- uses: conda-incubator/setup-miniconda@v3
# https://github.com/marketplace/actions/setup-miniconda
with:
#mamba-version: "*"
miniforge-version: "latest"
auto-update-conda: true
python-version: ${{ matrix.python-version }}
environment-file: environment.yml
activate-environment: test
auto-activate-base: false

- name: Install OpenFAST
run: |
conda install openfast>=4.0
- name: Add dependencies windows specific
if: contains( matrix.os, 'windows')
run: |
conda install -y m2w64-toolchain libpython
conda install -y gfortran gcc libpython
gfortran --version
- name: Add dependencies mac specific
Expand All @@ -148,10 +151,6 @@ jobs:
run: |
python -m pip install -e .
- name: Install OpenFAST
run: |
conda install openfast=4.0
- name: Generate Registry
run: |
python rosco/controller/rosco_registry/write_registry.py
Expand Down

0 comments on commit c7c9a5a

Please sign in to comment.