buildcache: do not try to push dependent packages #63
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: oomph | |
on: | |
push: | |
pull_request: | |
branches: | |
- main | |
permissions: | |
contents: read | |
packages: write | |
jobs: | |
test-oomph: | |
if: false | |
uses: ./.github/workflows/common.yml | |
strategy: | |
matrix: | |
#package-version: ['0.3.0', 'main'] | |
package-version: ['main'] | |
compiler: ['[email protected]'] | |
#backend: ['mpi', 'ucx', 'libfabric'] | |
backend: ['mpi'] | |
fortran-bindings: [false] | |
device: ['cpu'] | |
with: | |
package-name: oomph | |
package-version: ${{ matrix.package-version }} | |
package-variants: >- | |
%${{ matrix.compiler }} | |
backend=${{ matrix.backend }} | |
${{ matrix.fortran-bindings && '+fortran-bindings' || '' }} | |
${{ matrix.device == 'cuda' && '+cuda cuda_arch=90' || '' }} | |
${{ matrix.device == 'rocm' && '+rocm amdgpu_target=gfx942' || '' }} | |
test-package: ${{ matrix.device == 'cpu' }} |