Skip to content

Commit

Permalink
Delete find script
Browse files Browse the repository at this point in the history
  • Loading branch information
DominicDirkx committed Oct 16, 2024
2 parents d5870c8 + 9e11f0f commit f060554
Showing 1 changed file with 10 additions and 7 deletions.
17 changes: 10 additions & 7 deletions .github/workflows/build_and_test.yml
Original file line number Diff line number Diff line change
Expand Up @@ -86,14 +86,17 @@ jobs:
shell: bash


- name: Cache conda environment
# Cache the conda environment to avoid re-installing the same packages every time the workflow runs. The cache key is based on the environment.yml file, the operating system, and the date. The cache is restored if the cache key matches the cache key of the previous run.
uses: actions/cache@v4
with:
path: ${{ matrix.path_conda_env }}
key: ${{ runner.os }}-conda-${{ env.CACHE_NUMBER }}-${{ hashFiles('environment.yml') }}-${{steps.get-date.outputs.today}}
id: cache
# - name: Cache conda environment
# # Cache the conda environment to avoid re-installing the same packages every time the workflow runs. The cache key is based on the environment.yml file, the operating system, and the date. The cache is restored if the cache key matches the cache key of the previous run.
# uses: actions/cache@v4
# with:
# path: ${{ matrix.path_conda_env }}
# key: ${{ runner.os }}-conda-${{ env.CACHE_NUMBER }}-${{ hashFiles('environment.yml') }}-${{steps.get-date.outputs.today}}
# id: cache


- name: Show conda environment
run: cat environment.yml

- name: Create conda environment from environment.yml
# Update the tudat conda environment created using the environment.yml file if the cache is not restored
Expand Down

0 comments on commit f060554

Please sign in to comment.