cicd(backend): add Cuda
#117
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 | |
on: | |
push: | |
branches: | |
- main | |
- develop | |
pull_request: | |
branches: | |
- main | |
- develop | |
schedule: | |
# As advised by https://docs.github.com/en/actions/using-workflows/events-that-trigger-workflows#schedule, | |
# let's start the scheduled action at a somewhat random time to avoid periods of high load. | |
- cron: '42 5 * * 3' | |
env: | |
REGISTRY: ghcr.io | |
jobs: | |
set-vars: | |
runs-on: [ubuntu-latest] | |
outputs: | |
CI_IMAGE : ${{ steps.common.outputs.CI_IMAGE }} | |
steps: | |
- name: Export common variables. | |
id : common | |
run : | | |
echo "CI_IMAGE=${{ env.REGISTRY }}/${{ github.repository }}/kokkos-utils" >> $GITHUB_OUTPUT | |
build-image: | |
needs: [set-vars] | |
runs-on: [ubuntu-latest] | |
container: | |
image: docker:latest | |
permissions: | |
packages: write | |
strategy: | |
fail-fast: true | |
matrix: | |
include: | |
- backend : Cuda | |
base_image : nvidia/cuda:12.3.2-devel-ubuntu22.04 | |
platforms : linux/amd64 | |
kokkos_arch: VOLTA70 | |
- backend : OpenMP | |
base_image : ubuntu:24.04 | |
platforms : linux/amd64,linux/arm64 | |
steps: | |
- name: Checkout code. | |
uses: actions/checkout@v4 | |
- name: Prepare. | |
run: | | |
apk add jq | |
echo "DOXYGEN_VERSION=$(jq .dependencies.doxygen.value version.json -j)" >> $GITHUB_ENV | |
echo "GOOGLETEST_VERSION=$(jq .dependencies.googletest.value version.json -j)" >> $GITHUB_ENV | |
echo "KOKKOS_VERSION=$(jq .dependencies.kokkos.value version.json -j)" >> $GITHUB_ENV | |
- name: Set up QEMU. | |
uses: docker/setup-qemu-action@v3 | |
- name: Set up Docker Buildx. | |
uses: docker/setup-buildx-action@v3 | |
- name: Login to GitHub Container Registry. | |
uses: docker/login-action@v3 | |
with: | |
registry: ${{ env.REGISTRY }} | |
username: ${{ github.actor }} | |
password: ${{ secrets.GITHUB_TOKEN }} | |
- name: Build and push. | |
uses: docker/build-push-action@v5 | |
with: | |
context: . | |
platforms: ${{ matrix.platforms }} | |
push: ${{ github.ref == 'refs/heads/develop' || true }} | |
file: docker/dockerfile | |
tags: ${{ needs.set-vars.outputs.CI_IMAGE }}:${{ matrix.backend }} | |
cache-from: type=registry,ref=${{ needs.set-vars.outputs.CI_IMAGE }}:${{ matrix.backend }} | |
cache-to: type=inline | |
target: final | |
build-args: | | |
BASE_IMAGE=${{ matrix.base_image }} | |
DOXYGEN_VERSION=${{ env.DOXYGEN_VERSION }} | |
GOOGLETEST_VERSION=${{ env.GOOGLETEST_VERSION }} | |
KOKKOS_ARCH=${{ matrix.kokkos_arch }} | |
KOKKOS_PRESET=${{ matrix.backend }} | |
KOKKOS_VERSION=${{ env.KOKKOS_VERSION }} | |
labels: "org.opencontainers.image.source=${{ github.repositoryUrl }}" | |
build-library: | |
needs: [set-vars, build-image] | |
runs-on: [ubuntu-latest] | |
strategy: | |
fail-fast: true | |
matrix: | |
include: | |
- backend: Cuda | |
- backend: OpenMP | |
container: | |
image: ${{ needs.set-vars.outputs.CI_IMAGE }}:${{ matrix.backend }} | |
steps: | |
- name: Checkout code. | |
uses: actions/checkout@v4 | |
- name: Configure and build. | |
run : | | |
cmake -S . --preset=${{ matrix.backend }} --warn-uninitialized -Werror=dev | |
cmake --build --preset=${{ matrix.backend }} | |
- name: Test. | |
run : | | |
ctest --preset=${{ matrix.backend }} | |
build-documentation: | |
needs: [set-vars, build-image] | |
runs-on: [ubuntu-latest] | |
container: | |
image: ${{ needs.set-vars.outputs.CI_IMAGE }}:OpenMP | |
steps: | |
- name: Checkout code. | |
uses: actions/checkout@v4 | |
- name: Build Doxygen documentation. | |
run : | | |
cmake -S . --preset=OpenMP --warn-uninitialized -Werror=dev | |
cmake --build --preset=OpenMP --target=docs | |
- name: Upload Pages artifacts. | |
uses: actions/upload-pages-artifact@v3 | |
with: | |
path: build-with-OpenMP/docs/html | |
# The deploy job is heavily inspired from https://github.com/actions/deploy-pages. | |
deploy: | |
# The deployment only happens if the library can be built and the documentation generated. | |
needs: [build-library, build-documentation] | |
runs-on: [ubuntu-latest] | |
# The deployment only happens for 'main' or 'develop' branch. | |
if: ${{ contains(fromJSON('["refs/heads/main", "refs/heads/develop"]'), github.ref) }} | |
# Grant GITHUB_TOKEN the permissions required to make a Pages deployment | |
permissions: | |
pages: write # to deploy to Pages | |
id-token: write # to verify the deployment originates from an appropriate source | |
# Deploy to the github-pages environment | |
environment: | |
name: github-pages | |
url: ${{ steps.deployment.outputs.page_url }} | |
steps: | |
- name: Deploy to GitHub Pages. | |
id : deployment | |
uses: actions/deploy-pages@v4 |