You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: README.md
+9-9Lines changed: 9 additions & 9 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -13,15 +13,15 @@ module load CMake/3.20.1-GCCcore-10.3.0 # Load a dependency of my project (CMak
13
13
Another example of a `.envrc` file can be found in the [.envrc](https://github.com/EESSI/github-action-eessi/blob/main/.envrc) included with this repository.
14
14
15
15
## Instructions
16
-
You can use this GitHub Action in a workflow in your own repository with `uses: eessi/github-action-eessi@v2`.
16
+
You can use this GitHub Action in a workflow in your own repository with `uses: eessi/github-action-eessi@v3`.
17
17
18
18
A minimal job example for GitHub-hosted runners of type `ubuntu-latest`:
19
19
```yaml
20
20
jobs:
21
21
ubuntu-minimal:
22
22
runs-on: ubuntu-latest
23
23
steps:
24
-
- uses: eessi/github-action-eessi@v2
24
+
- uses: eessi/github-action-eessi@v3
25
25
- name: Test EESSI
26
26
run: |
27
27
module avail
@@ -44,7 +44,7 @@ jobs:
44
44
45
45
## Optional Parameters
46
46
The following parameters are supported:
47
-
- `eessi_stack_version`: version of the EESSI stack to use (defaults to `latest`)
47
+
- `eessi_stack_version`: version of the EESSI stack to use (defaults to `2023.06`)
48
48
- `eessi_config_package`: location of the EESSI CernVM-FS configuration package (defaults to `https://github.com/EESSI/filesystem-layer/releases/download/latest/cvmfs-config-eessi_latest_all.deb`).
49
49
<!--For macOS this parameter is required (e.g., `https://github.com/EESSI/filesystem-layer/releases/download/latest/cvmfs-config-eessi_latest_all.pkg`) -->
50
50
@@ -58,7 +58,7 @@ jobs:
58
58
build:
59
59
runs-on: ubuntu-latest
60
60
steps:
61
-
- uses: eessi/github-action-eessi@v2
61
+
- uses: eessi/github-action-eessi@v3
62
62
- name: Test EESSI
63
63
run: |
64
64
module avail
@@ -70,20 +70,20 @@ jobs:
70
70
This GitHub Action installs the [EESSI](https://eessi.github.io/docs/) software stack, making it available to subsequent `bash` commands. This means one can create
where the `gmx` command was only available to run after the loading the necessary environment module `GROMACS`. Note that I have not given the version of `GROMACS` which means the latest available version will be loaded.
86
+
where the `tensorflow` python module was only available to run after the loading the necessary environment module `TensorFlow`. Note that I have not given the version of `TensorFlow` which means the latest available version will be loaded.
description: 'Choose a suitable proxy automatically if set to single.'
17
-
required: false
18
-
default: 'single'
19
-
cvmfs_quota_limit:
20
-
description: 'Soft-limit of the cache in Megabyte. Consult https://docs.github.com/en/free-pro-team@latest/actions/reference/specifications-for-github-hosted-runners#supported-runners-and-hardware-resources before changing'
21
-
required: false
22
-
default: '15000'
23
-
cvmfs_use_cdn:
24
-
description: 'Change the stratum 1 endpoints to caching servers from Cloudflare.'
0 commit comments