Skip to content

Commit 338dd90

Browse files
authored
Create minimal_usage_lmod_init.yml
1 parent a9feb62 commit 338dd90

File tree

1 file changed

+38
-0
lines changed

1 file changed

+38
-0
lines changed
Lines changed: 38 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,38 @@
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

0 commit comments

Comments
 (0)