Skip to content

ScaLAPACK enums and namespace #924

ScaLAPACK enums and namespace

ScaLAPACK enums and namespace #924

Workflow file for this run

# This is a basic workflow to help you get started with Actions
name: CI
# Controls when the workflow will run
on:
# Triggers the workflow on push or pull request events but only for the master branch
push:
branches: [ master ]
pull_request:
branches: [ master ]
# Allows you to run this workflow manually from the Actions tab
workflow_dispatch:
# A workflow run is made up of one or more jobs that can run sequentially or in parallel
jobs:
icl_slate:
timeout-minutes: 120
strategy:
matrix:
maker: [make, cmake]
device: [cpu, gpu_nvidia, gpu_amd, gpu_intel]
fail-fast: false
runs-on: ${{ matrix.device }}
steps:
- uses: actions/checkout@v4
- name: Configure
run: .github/workflows/configure.sh ${{matrix.maker}} ${{matrix.device}}
- name: Build
run: .github/workflows/build.sh ${{matrix.maker}} ${{matrix.device}}
- name: Test
run: .github/workflows/test.sh ${{matrix.maker}} ${{matrix.device}}