Remove all references to the pilot repository #1
Workflow file for this run
This file contains 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
# documentation: https://help.github.com/en/articles/workflow-syntax-for-github-actions | |
name: Tests for EESSI software repo (native access) | |
on: [push, pull_request, workflow_dispatch] | |
# Declare default permissions as read only. | |
permissions: read-all | |
jobs: | |
pilot_repo_native: | |
runs-on: ubuntu-20.04 | |
strategy: | |
fail-fast: false | |
matrix: | |
EESSI_DEMO: | |
- Bioconductor | |
- GROMACS | |
- OpenFOAM | |
- TensorFlow | |
- ESPResSo | |
EESSI_VERSION: | |
- "2023.06" | |
steps: | |
- name: Check out software-layer repository | |
uses: actions/checkout@b4ffde65f46336ab88eb53be808477a3936bae11 # v4.1.1 | |
with: | |
persist-credentials: false | |
- name: Mount EESSI CernVM-FS software repository | |
uses: cvmfs-contrib/github-action-cvmfs@55899ca74cf78ab874bdf47f5a804e47c198743c # v4.0 | |
with: | |
cvmfs_config_package: https://github.com/EESSI/filesystem-layer/releases/download/latest/cvmfs-config-eessi_latest_all.deb | |
cvmfs_http_proxy: DIRECT | |
cvmfs_repositories: software.eessi.io | |
- name: Run demo | |
run: | | |
source /cvmfs/software.eessi.io/versions/${{matrix.EESSI_VERSION}}/init/bash | |
cd ${{matrix.EESSI_DEMO}} | |
pwd | |
./run.sh |