Skip to content

Commit

Permalink
Merge pull request #43 from DUNE/42-add-cache-for-sandreco
Browse files Browse the repository at this point in the history
42 add cache for sandreco
  • Loading branch information
mt82 authored Jul 13, 2024
2 parents 204f962 + 65d2256 commit 1c28bee
Show file tree
Hide file tree
Showing 2 changed files with 29 additions and 12 deletions.
13 changes: 5 additions & 8 deletions .github/workflows/build-sand-geometry.yml
Original file line number Diff line number Diff line change
@@ -1,9 +1,6 @@
name: SAND GEOMETRY
run-name: SAND GEOMETRY
on:
push:
branches:
- develop
on: [push]


env:
Expand All @@ -25,9 +22,9 @@ jobs:
# Get SHA of HEAD develop
#############################################################################################################################
- name: Get SHA of HEAD develop
id: develop_sha
run: echo "sha=$(git ls-remote https://github.com/DUNE/sandreco --refs refs/heads/develop | awk -F' ' '{print $1}')" >> $GITHUB_OUTPUT
id: dunendggd_sha
run: echo "sha=$(git ls-remote https://github.com/DUNE/dunendggd.git --refs refs/heads/develop | awk -F' ' '{print $1}')" >> $GITHUB_OUTPUT

#############################################################################################################################
# Cache for gegede
#############################################################################################################################
Expand All @@ -52,7 +49,7 @@ jobs:
path: |
~/dunendggd
# An explicit key for restoring and saving the cache
key: dunendggd-${{steps.develop_sha.outputs.sha}}
key: dunendggd-${{steps.dunendggd_sha.outputs.sha}}

#############################################################################################################################
# Install gegede
Expand Down
28 changes: 24 additions & 4 deletions .github/workflows/sandreco-ci.yml
Original file line number Diff line number Diff line change
@@ -1,9 +1,6 @@
name: SANDRECO CI
run-name: SANDRECO CI
on:
push:
branches:
- develop
on: [push]

env:
root-version: v6-32-02
Expand Down Expand Up @@ -39,6 +36,13 @@ jobs:
- name: Install GEANT4 dependencies
run: yum install -y xerces-c xerces-c-devel expat expat-devel zlib zlib-devel

#############################################################################################################################
# Get SHA of HEAD develop
#############################################################################################################################
- name: Get SHA of HEAD develop
id: develop_sha
run: echo "sha=$(git ls-remote https://github.com/DUNE/sandreco.git --refs refs/heads/develop | awk -F' ' '{print $1}')" >> $GITHUB_OUTPUT

#############################################################################################################################
# Cache for CLHEP
#############################################################################################################################
Expand Down Expand Up @@ -91,6 +95,20 @@ jobs:
# An explicit key for restoring and saving the cache
key: edepsim-${{env.edepsim-version}}-root-${{env.root-version}}-geant4-${{env.geant4-version}}


#############################################################################################################################
# Cache for SANDRECO
#############################################################################################################################
- name: SANDRECO cache
id: cache-sandreco
uses: actions/cache@v4.0.2
with:
# A list of files, directories, and wildcard patterns to cache and restore
path: |
sandreco
# An explicit key for restoring and saving the cache
key: sandreco-${{steps.develop_sha.outputs.sha}}-edepsim-${{env.edepsim-version}}-root-${{env.root-version}}-geant4-${{env.geant4-version}}

#############################################################################################################################
# Install CLHEP
#############################################################################################################################
Expand Down Expand Up @@ -153,6 +171,7 @@ jobs:
# Get sandreco
#############################################################################################################################
- name: Checkout sandreco
if: steps.cache-sandreco.outputs.cache-hit != 'true'
uses: actions/checkout@v4.1.7
with:
# Relative path under $GITHUB_WORKSPACE to place the repository
Expand All @@ -162,6 +181,7 @@ jobs:
# Install sandreco
#############################################################################################################################
- name: Install sandreco
if: steps.cache-sandreco.outputs.cache-hit != 'true'
run: |
cd sandreco
mkdir build
Expand Down

0 comments on commit 1c28bee

Please sign in to comment.