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
+7-7Lines changed: 7 additions & 7 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -6,7 +6,7 @@ This GitHub Action executes user payload code inside a EIC shell environment, sp
6
6
## Instructions
7
7
8
8
### Prerequisites
9
-
This action depends on the user to call the companion action `uses: cvmfs-contrib/github-action-cvmfs@v2` before using `uses: eic/run-cvmfs-osg-eic-shell@v1`, which will install CVMFS on the node. GitHub Actions currently do not support calling the action `github-action-cvmfs` from within `run-cvmfs-osg-eic-shell`, this needs to be done explicitly by the user.
9
+
This action depends on the user to call the companion action `uses: cvmfs-contrib/github-action-cvmfs@v4` before using `uses: eic/run-cvmfs-osg-eic-shell@v1`, which will install CVMFS on the node. GitHub Actions currently do not support calling the action `github-action-cvmfs` from within `run-cvmfs-osg-eic-shell`, this needs to be done explicitly by the user.
10
10
11
11
### Example
12
12
@@ -18,17 +18,17 @@ jobs:
18
18
run-eic-shell:
19
19
runs-on: ubuntu-latest
20
20
steps:
21
-
- uses: actions/checkout@v2
22
-
- uses: cvmfs-contrib/github-action-cvmfs@v2
21
+
- uses: actions/checkout@v4
22
+
- uses: cvmfs-contrib/github-action-cvmfs@v4
23
23
- uses: eic/run-cvmfs-osg-eic-shell@v1
24
24
with:
25
-
platform-release: "jug_xl:nightly"
25
+
platform-release: "eic_xl:nightly"
26
26
run: |
27
27
gcc --version
28
28
which gcc
29
29
eic-info
30
30
```
31
-
In this case the action will automatically resolve the correct container image (in this case `jug_xl:nightly`) and spawn an instance with Singularity from `/cvmfs/singularity.opensciencegrid.org/`.
31
+
In this case the action will automatically resolve the correct container image (in this case `eic_xl:nightly`) and spawn an instance with Singularity from `/cvmfs/singularity.opensciencegrid.org/`.
32
32
33
33
The action mounts the checkout directory into the mentioned container and wraps the variable `run` in the script:
34
34
@@ -50,9 +50,9 @@ which is executed in the container and thus giving the user an easy and direct a
50
50
51
51
### Parameters
52
52
The following parameters are supported:
53
-
- `platform`: EIC shell platform you are targeting (e.g. `jug_xl`)
53
+
- `platform`: EIC shell platform you are targeting (e.g. `eic_xl`)
54
54
- `release`: EIC shell release you are targeting (e.g. `3.0-stable`)
55
-
- `platform-release`: EIC shell platform release string you are targeting (e.g. `jug_xl:3.0-stable`)
55
+
- `platform-release`: EIC shell platform release string you are targeting (e.g. `eic_xl:3.0-stable`)
56
56
- `run`: They payload code you want to execute on top of the view
57
57
- `setup`: Initialization/Setup script for a view that sets the environment (e.g. `/opt/detector/epic-main/bin/thisepic.sh`)
58
58
- `sandbox-path`: Path where the setup script for the custom view is location. By specifying this variable the auto-resolving of the view based on `release` and `platform` is disabled.
0 commit comments