File tree Expand file tree Collapse file tree 1 file changed +38
-0
lines changed
Expand file tree Collapse file tree 1 file changed +38
-0
lines changed Original file line number Diff line number Diff line change 1+ name : ubuntu-minimal_usage
2+ on :
3+ schedule :
4+ - cron : ' 0 0 * * *' # Runs once a day at midnight UTC
5+ workflow_dispatch : # Allows manual triggering
6+ push :
7+ branches :
8+ - main
9+ pull_request :
10+ branches :
11+ - main
12+ # Declare default permissions as read only.
13+ permissions : read-all
14+ jobs :
15+ minimal_usage :
16+ runs-on : ${{ matrix.os }}
17+ strategy :
18+ matrix :
19+ os :
20+ - ubuntu-24.04-arm
21+ - ubuntu-24.04
22+ - ubuntu-latest
23+ steps :
24+ - uses : actions/checkout@11bd71901bbe5b1630ceea73d27597364c9af683 # v4.2.2
25+ - uses : ./
26+ with :
27+ use_eessi_module : true
28+ - name : Test EESSI
29+ run : |
30+ direnv status
31+ module avail
32+ module list |& grep "EESSI/"
33+ shell : bash
34+ - name : Test available repos
35+ run : |
36+ ls /cvmfs/software.eessi.io
37+ ls /cvmfs/dev.eessi.io
38+ shell : bash
You can’t perform that action at this time.
0 commit comments