From da97d4ec00374ef0e8492b9df1ee92f260f39750 Mon Sep 17 00:00:00 2001 From: Calvin Date: Fri, 10 Nov 2023 21:59:34 +0200 Subject: [PATCH] Removed Cache RMS due to a package issue within RMS --- .github/workflows/cont_int.yml | 15 --------------- .github/workflows/update-cache.yml | 14 -------------- 2 files changed, 29 deletions(-) diff --git a/.github/workflows/cont_int.yml b/.github/workflows/cont_int.yml index e646e96d..ed861f8b 100644 --- a/.github/workflows/cont_int.yml +++ b/.github/workflows/cont_int.yml @@ -126,21 +126,6 @@ jobs: echo "PYTHONPATH=$(pwd):$PYTHONPATH" >> ~/.bashrc echo "PATH=$(pwd):$PATH" >> ~/.bashrc echo "export rmgpy_path=$(pwd)" >> ~/.bashrc - - - - name: Cache RMS - id: cache-rms - uses: actions/cache@v2 - env: - CACHE_NUMBER: 0 - with: - path: | - /usr/share/miniconda3/envs/rmg_env/share/julia/artifacts/ - /usr/share/miniconda3/envs/rmg_env/share/julia/packages/ - /usr/share/miniconda3/envs/rmg_env/share/julia/registries/ - /usr/share/miniconda3/envs/rmg_env/share/julia/compiled/ - key: - ${{ runner.os }}-julia-${{ env.CACHE_NUMBER }}-rms - name: Install RMS Julia run: julia -e 'using Pkg; Pkg.add(PackageSpec(name="PyCall",rev="master"));Pkg.build("PyCall");Pkg.add(PackageSpec(name="ReactionMechanismSimulator",rev="main")); using ReactionMechanismSimulator;' diff --git a/.github/workflows/update-cache.yml b/.github/workflows/update-cache.yml index 9e8b6cbc..51c2f0a8 100644 --- a/.github/workflows/update-cache.yml +++ b/.github/workflows/update-cache.yml @@ -99,20 +99,6 @@ jobs: - name: Install PyCall RMG_ENV run: python -c "import julia; julia.install(); import diffeqpy; diffeqpy.install()" - - name: Cache RMS - id: cache-rms - uses: actions/cache@v2 - env: - CACHE_NUMBER: 0 - with: - path: | - /usr/share/miniconda3/envs/rmg_env/share/julia/artifacts/ - /usr/share/miniconda3/envs/rmg_env/share/julia/packages/ - /usr/share/miniconda3/envs/rmg_env/share/julia/registries/ - /usr/share/miniconda3/envs/rmg_env/share/julia/compiled/ - key: - ${{ runner.os }}-julia-${{ env.CACHE_NUMBER }}-rms - - name: Install RMS Julia run: julia -e 'using Pkg; Pkg.add(PackageSpec(name="PyCall",rev="master"));Pkg.build("PyCall");Pkg.add(PackageSpec(name="ReactionMechanismSimulator",rev="main")); using ReactionMechanismSimulator;'