Initial implemtation of average based off of and designed to mimic be… #726
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: Build and test cunumeric on GH | |
concurrency: | |
group: ci-build-and-test-on-${{ github.event_name }}-from-${{ github.ref_name }} | |
cancel-in-progress: true | |
on: | |
push: | |
branches: | |
- "pull-request/[0-9]+" | |
- "branch-*" | |
jobs: | |
build-and-test: | |
strategy: | |
fail-fast: false | |
matrix: | |
include: | |
- device: "gpu" | |
image: "rapidsai/devcontainers:23.06-cpp-mambaforge-ubuntu22.04" | |
- device: "cpu" | |
image: "rapidsai/devcontainers:23.06-cpp-mambaforge-ubuntu22.04" | |
uses: | |
./.github/workflows/gh-build-and-test.yml | |
with: | |
device: ${{ matrix.device }} | |
image: ${{ matrix.image }} |