Skip to content

Commit

Permalink
Merge pull request #524 from hhslepicka/ci/remove-cache
Browse files Browse the repository at this point in the history
CI: Remove cache for external dependencies.
  • Loading branch information
DavidSagan authored Sep 28, 2023
2 parents a5ef0e3 + 40116b7 commit e1709e3
Show file tree
Hide file tree
Showing 2 changed files with 0 additions and 16 deletions.
8 changes: 0 additions & 8 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -58,16 +58,8 @@ jobs:
# autoconf libtool m4 libgomp1 libreadline-dev libncurses-dev pkg-config \
# libcairo2-dev libpango1.0-dev libxt-dev libx11-dev -y

# Try to check the cache for external dependencies
- uses: actions/cache@v3
id: cache
with:
path: ~/external_deps
key: ${{ env.EXTERNAL_DEPS_VERSION }}

# In case we don't have it available, check it out
- name: Checkout External Dependencies
if: steps.cache.outputs.cache-hit != 'true'
run: |
git clone --depth 1 --branch ${{ env.EXTERNAL_DEPS_VERSION }} https://github.com/bmad-sim/bmad-external-deps.git ~/external_deps
Expand Down
8 changes: 0 additions & 8 deletions .github/workflows/release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -43,16 +43,8 @@ jobs:
# sudo apt update
# sudo apt-get install gfortran g++ cmake libtool-bin libreadline-dev libpango1.0-dev libssl-dev bc

# Try to check the cache for external dependencies
- uses: actions/cache@v3
id: cache
with:
path: ~/external_deps
key: ${{ env.EXTERNAL_DEPS_VERSION }}

# In case we don't have it available, check it out
- name: Checkout External Dependencies
if: steps.cache.outputs.cache-hit != 'true'
run: |
git clone --depth 1 --branch ${{ env.EXTERNAL_DEPS_VERSION }} https://github.com/bmad-sim/bmad-external-deps.git ~/external_deps
Expand Down

0 comments on commit e1709e3

Please sign in to comment.