Merge pull request #27 from boegel/no_EESSI_SILENT #7
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
name: ubuntu_tensorflow | |
on: | |
push: | |
branches: | |
- main | |
# Declare default permissions as read only. | |
permissions: read-all | |
jobs: | |
tensorflow_usage: | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@a5ac7e51b41094c92402da3b24376905380afc29 # v4.1.6 | |
- uses: eessi/github-action-eessi@main | |
with: | |
eessi_stack_version: '2023.06' | |
- name: Test EESSI | |
run: | | |
# TensorFlow module is loaded via .envrc | |
python -c "import tensorflow; print(tensorflow.__version__)" | |
shell: bash | |
- name: Test caching effect of EESSI | |
run: | | |
python -c "import tensorflow; print(tensorflow.__version__)" | |
shell: bash | |
- name: Test module load | |
run: | | |
module load CMake | |
module list | |
cmake --version | |
shell: bash |