adding regression test workflow in container #5
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
name: Regression Test in Container | |
on: | |
pull_request: | |
branches: [ devel ] | |
jobs: | |
buildtest_tutorial_container: | |
runs-on: ubuntu-latest | |
container: | |
image: ghcr.io/buildtesters/buildtest_spack | |
steps: | |
- name: debug in container | |
run: | | |
which git | |
git --version | |
- uses: actions/checkout@v2 | |
- name: regression test in container | |
run: | | |
cd $GITHUB_WORKSPACE | |
ls -la $GITHUB_WORKSPACE | |
ls -la $HOME | |
bash buildtest/scripts/spack_container/regtest-tutorial.sh |