Add number of files to json output #146
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 pilot 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 | |
EESSI_VERSION: | |
- "2021.06" | |
- "2021.12" | |
steps: | |
- name: Check out software-layer repository | |
uses: actions/checkout@93ea575cb5d8a053eaa0ac8fa3b40d7e05a33cc8 # v3.1.0 | |
with: | |
persist-credentials: false | |
- name: Mount EESSI CernVM-FS pilot repository | |
uses: cvmfs-contrib/github-action-cvmfs@d4641d0d591c9a5c3be23835ced2fb648b44c04b # v3.1 | |
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: pilot.eessi-hpc.org | |
- name: Run demo | |
run: | | |
source /cvmfs/pilot.eessi-hpc.org/versions/${{matrix.EESSI_VERSION}}/init/bash | |
cd ${{matrix.EESSI_DEMO}} | |
pwd | |
./run.sh |