Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
23 changes: 0 additions & 23 deletions .github/workflows/add_to_project.yml

This file was deleted.

2 changes: 1 addition & 1 deletion .github/workflows/build_and_run_unit_test.yml
Original file line number Diff line number Diff line change
Expand Up @@ -23,7 +23,7 @@ jobs:
# The type of runner that the job will run on
strategy:
matrix:
os: [ubuntu-20.04, macos-12]
os: [ubuntu-latest, macos-latest]
fail-fast: false
runs-on: ${{ matrix.os }}

Expand Down
15 changes: 15 additions & 0 deletions .github/workflows/ngen_integration.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -46,6 +46,20 @@ jobs:
with:
repository: noaa-owp/ngen

- name: Install uv
uses: astral-sh/setup-uv@v7
with:
python-version: "3.12"
enable-cache: false

- name: Install python via uv
run: uv python install --default

- name: Install gcc12 on MacOS
if: runner.os == 'macOS'
run: |
brew install gcc@12

- name: Build Surfacebmi
id: submod_build_1
uses: ./.github/actions/ngen-submod-build
Expand All @@ -71,6 +85,7 @@ jobs:
id: submod_build_6
uses: ./.github/actions/ngen-submod-build
with:
cmake-flags: -DCMAKE_POLICY_VERSION_MINIMUM=3.5
mod-dir: "extern/sloth/"
targets: "slothmodel"

Expand Down