From 00c1b0710b7007b07f9fb06ce909b8b84ec94706 Mon Sep 17 00:00:00 2001 From: Jackson Burns Date: Sat, 30 Mar 2024 21:47:22 -0400 Subject: [PATCH] add test step for RMS on conda binary to the build action --- .github/workflows/conda_build.yml | 10 ++++++++++ 1 file changed, 10 insertions(+) diff --git a/.github/workflows/conda_build.yml b/.github/workflows/conda_build.yml index cea0b742a08..5f72a8c57ca 100644 --- a/.github/workflows/conda_build.yml +++ b/.github/workflows/conda_build.yml @@ -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