Skip to content

Commit

Permalink
add test step for RMS on conda binary to the build action
Browse files Browse the repository at this point in the history
  • Loading branch information
JacksonBurns committed Mar 31, 2024
1 parent 97ab7f3 commit 00c1b07
Showing 1 changed file with 10 additions and 0 deletions.
10 changes: 10 additions & 0 deletions .github/workflows/conda_build.yml
Original file line number Diff line number Diff line change
Expand Up @@ -38,3 +38,13 @@ jobs:
conda config --add channels cantera
conda config --add channels conda-forge
conda-build --token $CONDA_TOKEN --user rmg .conda
- name: Test Binary Install with RMS
run: |
conda create --name rmg_test python=3.7*
conda activate rmg_test
conda install -c local rmg
conda install -c conda-forge julia=1.9.1 pyjulia>=0.6
conda install -c rmg pyrms diffeqpy
python -c "import julia; julia.install(); import diffeqpy; diffeqpy.install()"
julia -e 'using Pkg; Pkg.add(PackageSpec(name="ReactionMechanismSimulator",rev="main")); using ReactionMechanismSimulator'
python-jl rmg.py test/regression/RMS_constantVIdealGasReactor_superminimal/input.py

0 comments on commit 00c1b07

Please sign in to comment.