Tpetra, Ifpack2, MueLu: Remove deprecated code #4533
Workflow file for this run
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: spack | |
| on: | |
| pull_request: | |
| types: | |
| - opened | |
| - synchronize | |
| workflow_dispatch: | |
| # Cancels any in progress 'workflow' associated with this PR | |
| concurrency: | |
| group: ${{ github.workflow }}-${{ github.ref }} | |
| cancel-in-progress: true | |
| permissions: | |
| contents: read | |
| jobs: | |
| gcc10-openmpi416: | |
| permissions: | |
| contents: read # for actions/checkout to fetch code | |
| runs-on: [self-hosted, gcc-10.4.0_openmpi-4.1.6] | |
| steps: | |
| - name: Clone Trilinos | |
| uses: actions/checkout@08c6903cd8c0fde910a37f88322edcfb5dd907a8 # v5.0.0 | |
| with: | |
| fetch-depth: 1 | |
| - name: Spack build | |
| shell: bash -l {0} | |
| run: | | |
| cd /home/runner/spack | |
| git checkout develop && git pull --quiet | |
| echo -n "Spack version is: " | |
| git rev-parse HEAD | |
| spack repo update | |
| spack reindex | |
| spack develop --no-clone --path $GITHUB_WORKSPACE trilinos@develop | |
| spack add trilinos@develop | |
| spack concretize -f | |
| spack install --cdash-upload-url=https://sems-cdash-son.sandia.gov/cdash/submit.php?project=Trilinos --cdash-track='Pull Request' --cdash-build='PR-${{ github.event.pull_request.number }}-spack' -j16 trilinos |