Skip to content

Commit

Permalink
DEBUG: working through getting all publish tests to match - fierro-de…
Browse files Browse the repository at this point in the history
…v (cpu)
  • Loading branch information
djdunning committed Feb 28, 2024
1 parent c08986e commit 6653721
Showing 1 changed file with 6 additions and 3 deletions.
9 changes: 6 additions & 3 deletions .conda/fierro-dev/cpu/meta.yaml
Original file line number Diff line number Diff line change
@@ -1,5 +1,6 @@
{% set version = "1.0.0" %}
{% set compiler_version = "10.4.0" %}
{% set linux_compiler_version = "10.4.0" %}
{% set macos_compiler_version = "12" %}

package:
name: fierro-dev
Expand All @@ -15,8 +16,10 @@ build:
requirements:
run:
- cmake >=3.17
- {{ compiler('cxx') }}={{ compiler_version }}
- {{ compiler('c') }}={{ compiler_version }}
- {{ compiler('c') }}={{ linux_compiler_version }} # [linux]
- {{ compiler('c') }}={{ macos_compiler_version }} # [osx]
- {{ compiler('cxx') }}={{ linux_compiler_version }} # [linux]
- {{ compiler('cxx') }}={{ macos_compiler_version }} # [osx]
- {{ compiler('fortran') }}
- fierro-trilinos-cpu
- mpi
Expand Down

0 comments on commit 6653721

Please sign in to comment.