Back to home page

EIC code displayed by LXR

 
 

    


Warning, /run-cvmfs-osg-eic-shell/action.yml is written in an unsupported language. File is not indexed.

0001 name: 'execute user code in an EIC environment'
0002 description: 'Spawns appropriate docker image and executes user code in the environment of a specified EIC shell'
0003 branding:
0004   icon: 'play'
0005   color: 'blue'
0006 inputs:
0007   platform:
0008     description: 'EIC shell platform you are targeting (e.g. eic_xl)'
0009     required: false
0010     default: ''
0011   release:
0012     description: 'EIC shell release you are targeting (e.g. 3.0-stable)'
0013     required: false
0014     default: ''
0015   platform-release:
0016     description: 'EIC shell release platform string you are targeting (e.g. eic_xl:24.11.2-stable)'
0017     required: false
0018     default: ''
0019   run:
0020     description: 'They payload code you want to execute on top of the view'
0021     required: false
0022     default: ''
0023   setup:
0024     description: 'Environment initialization bash script that is sourced (e.g. install/bin/thisepic.sh)'
0025     required: false
0026     default: ''
0027   sandbox-path:
0028     description: 'Custom path where the sandbox is located'
0029     required: false
0030     default: ''
0031   network_types:
0032     description: 'Network access types inside EIC shell'
0033     required: false
0034     default: 'bridge'
0035   apptainer_version:
0036     description: 'Apptainer version to use (e.g. v1.1.3 or latest)'
0037     required: false
0038     default: 'v1.1.3'
0039 
0040 runs:
0041   using: "composite"
0042   steps:
0043     - run: |
0044         ${{ github.action_path }}/setup-eic-shell.sh
0045       shell: bash
0046       env:
0047         THIS: ${{ github.action_path }}
0048         GITHUB_ACTOR: ${{ github.actor }}
0049         EIC_SHELL_RELEASE: ${{ inputs.release }}
0050         EIC_SHELL_PLATFORM_RELEASE: ${{ inputs.platform-release }}
0051         EIC_SHELL_PLATFORM: ${{ inputs.platform }}
0052         RUN: ${{ inputs.run }}
0053         SETUP: ${{ inputs.setup }}
0054         SANDBOX_PATH: ${{ inputs.sandbox-path }}
0055         NETWORK_TYPES: ${{ inputs.network_types }}
0056         APPTAINER_VERSION: ${{ inputs.apptainer_version }}