ubuntu-minimal_usage-lmod_init #130
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| name: ubuntu-minimal_usage-lmod_init | |
| on: | |
| schedule: | |
| - cron: '0 0 * * *' # Runs once a day at midnight UTC | |
| workflow_dispatch: # Allows manual triggering | |
| push: | |
| branches: | |
| - main | |
| pull_request: | |
| branches: | |
| - main | |
| # Declare default permissions as read only. | |
| permissions: read-all | |
| jobs: | |
| minimal_usage: | |
| runs-on: ${{ matrix.os }} | |
| strategy: | |
| matrix: | |
| os: | |
| - ubuntu-24.04-arm | |
| - ubuntu-24.04 | |
| - ubuntu-latest | |
| steps: | |
| - uses: actions/checkout@11bd71901bbe5b1630ceea73d27597364c9af683 # v4.2.2 | |
| - uses: ./ | |
| with: | |
| use_eessi_module: true | |
| init_direnv: false | |
| - name: Test EESSI | |
| run: | | |
| module avail | |
| module list |& grep "EESSI/" | |
| shell: bash | |
| - name: Test available repos | |
| run: | | |
| ls /cvmfs/software.eessi.io | |
| ls /cvmfs/dev.eessi.io | |
| shell: bash |