Skip to content

Commit 6e32f63

Browse files
authored
ci: add cache test workflow
1 parent facf4a7 commit 6e32f63

File tree

1 file changed

+22
-0
lines changed

1 file changed

+22
-0
lines changed

.github/workflows/cache.yml

Lines changed: 22 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,22 @@
1+
name: cache
2+
on:
3+
push:
4+
pull_request:
5+
schedule:
6+
- cron: '44 4 * * *'
7+
jobs:
8+
build:
9+
runs-on: ${{ matrix.os }}
10+
strategy:
11+
fail-fast: false
12+
matrix:
13+
os: [ubuntu-latest, ubuntu-20.04, ubuntu-22.04]
14+
steps:
15+
- uses: actions/checkout@v4
16+
- uses: ./
17+
with:
18+
actions_cache: true
19+
- name: Test CernVM-FS
20+
run: |
21+
source /cvmfs/sft.cern.ch/lcg/views/LCG_107/x86_64-ubuntu2404-gcc13-opt/setup.sh
22+
root -l -q -b

0 commit comments

Comments
 (0)