diff --git a/.github/workflows/cont_int.yml b/.github/workflows/cont_int.yml index 7186a4e8..310bf0b6 100644 --- a/.github/workflows/cont_int.yml +++ b/.github/workflows/cont_int.yml @@ -69,11 +69,8 @@ jobs: - name: Cythonize RMG run: | cd RMG-Py + conda activate rmg_env make - python -c "import julia; julia.install(); import diffeqpy; diffeqpy.install()" - julia -e 'using Pkg; Pkg.add(PackageSpec(name="ReactionMechanismSimulator",rev="main"));using ReactionMechanismSimulator' - ln -sfn $(which python-jl) $(which python) - cd .. - name: Cache Cython modules uses: actions/cache@v2 @@ -81,6 +78,14 @@ jobs: path: RMG-Py/build key: ${{ runner.os }}-cython-${{ env.rmg_env }} restore-keys: ${{ runner.os }}-cython- + + - name: Install RMS + run: | + conda activate rmg_env + python -c "import julia; julia.install(); import diffeqpy; diffeqpy.install()" + julia -e 'using Pkg; Pkg.add(PackageSpec(name="ReactionMechanismSimulator",rev="main"));using ReactionMechanismSimulator' + ln -sfn $(which python-jl) $(which python) + cd .. - name: Install ARC run: |