Install Thapi master and develop every week #75
This file contains hidden or 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: Install Thapi master and develop every week | |
| on: | |
| schedule: | |
| # At 00:00 on Sunday.” | |
| - cron: "0 0 * * 0" | |
| workflow_dispatch: | |
| jobs: | |
| myJob: | |
| runs-on: ubuntu-latest | |
| steps: | |
| - name: Checkout | |
| uses: actions/checkout@v6 | |
| - name: Checkout Spack | |
| uses: actions/checkout@v6 | |
| with: | |
| repository: spack/spack | |
| ref: releases/latest | |
| path: external/spack | |
| - name: Activate | |
| run: | | |
| . external/spack/share/spack/setup-env.sh | |
| spack repo add ./ | |
| - name: Install thapi master | |
| run: | | |
| . external/spack/share/spack/setup-env.sh | |
| spack install $SPACK_OPT thapi@master | |
| - name: Install thapi develop | |
| run: | | |
| . external/spack/share/spack/setup-env.sh | |
| spack install $SPACK_OPT thapi@develop |