Skip to content

Commit 65c8071

Browse files
authored
fix: jug_xl -> eic_xl; cvmfs-contrib/github-action-cvmfs@v4 (#17)
### Briefly, what does this PR introduce? This PR updates instances of jug_xl to eic_xl.
1 parent f5b7795 commit 65c8071

File tree

6 files changed

+18
-18
lines changed

6 files changed

+18
-18
lines changed

.github/workflows/basic.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -5,12 +5,12 @@ jobs:
55
runs-on: ubuntu-latest
66
steps:
77
- uses: actions/checkout@v4
8-
- uses: cvmfs-contrib/github-action-cvmfs@v3
8+
- uses: cvmfs-contrib/github-action-cvmfs@v4
99
with:
1010
cvmfs_repositories: 'singularity.opensciencegrid.org'
1111
- uses: ./
1212
with:
13-
platform-release: "jug_xl:nightly"
13+
platform-release: "eic_xl:nightly"
1414
run: |
1515
gcc --version
1616
which gcc

.github/workflows/double.yml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -5,19 +5,19 @@ jobs:
55
runs-on: ubuntu-latest
66
steps:
77
- uses: actions/checkout@v4
8-
- uses: cvmfs-contrib/github-action-cvmfs@v3
8+
- uses: cvmfs-contrib/github-action-cvmfs@v4
99
with:
1010
cvmfs_repositories: 'singularity.opensciencegrid.org'
1111
- uses: ./
1212
with:
13-
platform-release: "jug_xl:nightly"
13+
platform-release: "eic_xl:nightly"
1414
run: |
1515
gcc --version
1616
which gcc
1717
eic-info
1818
- uses: ./
1919
with:
20-
platform-release: "jug_xl:nightly"
20+
platform-release: "eic_xl:nightly"
2121
run: |
2222
gcc --version
2323
which gcc

.github/workflows/network-none.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -5,12 +5,12 @@ jobs:
55
runs-on: ubuntu-latest
66
steps:
77
- uses: actions/checkout@v4
8-
- uses: cvmfs-contrib/github-action-cvmfs@v3
8+
- uses: cvmfs-contrib/github-action-cvmfs@v4
99
with:
1010
cvmfs_repositories: 'singularity.opensciencegrid.org'
1111
- uses: ./
1212
with:
13-
platform-release: "jug_xl:nightly"
13+
platform-release: "eic_xl:nightly"
1414
network_types: "none"
1515
run: |
1616
if ping -c 1 8.8.8.8 ; then

.github/workflows/version.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -5,12 +5,12 @@ jobs:
55
runs-on: ubuntu-latest
66
steps:
77
- uses: actions/checkout@v4
8-
- uses: cvmfs-contrib/github-action-cvmfs@v3
8+
- uses: cvmfs-contrib/github-action-cvmfs@v4
99
with:
1010
cvmfs_repositories: 'singularity.opensciencegrid.org'
1111
- uses: ./
1212
with:
13-
platform-release: "jug_xl:nightly"
13+
platform-release: "eic_xl:nightly"
1414
apptainer_version: "v1.1.2"
1515
run: |
1616
gcc --version

README.md

Lines changed: 7 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@ This GitHub Action executes user payload code inside a EIC shell environment, sp
66
## Instructions
77

88
### 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.
1010

1111
### Example
1212

@@ -18,17 +18,17 @@ jobs:
1818
run-eic-shell:
1919
runs-on: ubuntu-latest
2020
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
2323
- uses: eic/run-cvmfs-osg-eic-shell@v1
2424
with:
25-
platform-release: "jug_xl:nightly"
25+
platform-release: "eic_xl:nightly"
2626
run: |
2727
gcc --version
2828
which gcc
2929
eic-info
3030
```
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/`.
3232

3333
The action mounts the checkout directory into the mentioned container and wraps the variable `run` in the script:
3434

@@ -50,9 +50,9 @@ which is executed in the container and thus giving the user an easy and direct a
5050

5151
### Parameters
5252
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`)
5454
- `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`)
5656
- `run`: They payload code you want to execute on top of the view
5757
- `setup`: Initialization/Setup script for a view that sets the environment (e.g. `/opt/detector/epic-main/bin/thisepic.sh`)
5858
- `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.

action.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -5,15 +5,15 @@ branding:
55
color: 'blue'
66
inputs:
77
platform:
8-
description: 'EIC shell platform you are targeting (e.g. jug_xl)'
8+
description: 'EIC shell platform you are targeting (e.g. eic_xl)'
99
required: false
1010
default: ''
1111
release:
1212
description: 'EIC shell release you are targeting (e.g. 3.0-stable)'
1313
required: false
1414
default: ''
1515
platform-release:
16-
description: 'EIC shell release platform string you are targeting (e.g. jug_xl:3.0-stable)'
16+
description: 'EIC shell release platform string you are targeting (e.g. eic_xl:24.11.2-stable)'
1717
required: false
1818
default: ''
1919
run:

0 commit comments

Comments
 (0)