SYCL2020 Updates, main branch (2024.11.19.) (#136) #687
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
# Algebra plugins library, part of the ACTS project (R&D line) | |
# | |
# (c) 2021-2024 CERN for the benefit of the ACTS project | |
# | |
# Mozilla Public License Version 2.0 | |
name: Builds | |
on: | |
push: | |
pull_request: | |
branches: | |
- main | |
- 'release/**' | |
# Cancel existing jobs on new pushes. | |
concurrency: | |
group: ${{ github.workflow }}-${{ github.head_ref || github.run_id }} | |
cancel-in-progress: true | |
# All the different build/test jobs. | |
jobs: | |
# Native build jobs. | |
native: | |
# The different build modes to test. | |
strategy: | |
matrix: | |
BUILD_TYPE: ["Release", "Debug"] | |
PLATFORM: | |
- OS: "ubuntu-latest" | |
GENERATOR: "Unix Makefiles" | |
- OS: "macos-latest" | |
GENERATOR: "Xcode" | |
- OS: "windows-latest" | |
GENERATOR: "Visual Studio 17 2022" | |
# The system to run on. | |
runs-on: ${{ matrix.PLATFORM.OS }} | |
# The build/test steps to execute. | |
steps: | |
# Use a standard checkout of the code. | |
- uses: actions/checkout@v4 | |
# Run the CMake configuration. | |
- name: Configure | |
run: cmake --preset default-x86-64 | |
-DALGEBRA_PLUGINS_INCLUDE_FASTOR=${{ (matrix.PLATFORM.OS == 'macos-latest') && 'OFF' || 'ON' }} | |
-DALGEBRA_PLUGINS_INCLUDE_VC=${{ (matrix.PLATFORM.OS == 'windows-latest') && 'OFF' || 'ON' }} | |
-DALGEBRA_PLUGINS_SETUP_VC=${{ (matrix.PLATFORM.OS == 'windows-latest') && 'OFF' || 'ON' }} | |
-S ${{ github.workspace }} -B build | |
-G "${{ matrix.PLATFORM.GENERATOR }}" | |
# Perform the build. | |
- name: Build | |
run: cmake --build build --config ${{ matrix.BUILD_TYPE }} | |
# Run the unit test(s). | |
- name: Test | |
run: | | |
cd build | |
ctest --output-on-failure -C ${{ matrix.BUILD_TYPE }} | |
# Containerised build jobs. | |
container: | |
# The different build modes to test. | |
strategy: | |
matrix: | |
BUILD_TYPE: ["Release", "Debug"] | |
PLATFORM: | |
- NAME: "HOST" | |
CONTAINER: "ghcr.io/acts-project/ubuntu2404:56" | |
OPTIONS: --preset eigen -DALGEBRA_PLUGINS_USE_SYSTEM_EIGEN3=TRUE | |
RUN_TESTS: true | |
ENVIRONMENT: | |
- NAME: "HOST" | |
CONTAINER: "ghcr.io/acts-project/ubuntu2404:67" | |
OPTIONS: --preset eigen | |
RUN_TESTS: true | |
ENVIRONMENT: | |
- NAME: "HOST" | |
CONTAINER: "ghcr.io/acts-project/ubuntu2404:56" | |
OPTIONS: -DALGEBRA_PLUGINS_INCLUDE_SMATRIX=TRUE | |
RUN_TESTS: true | |
ENVIRONMENT: | |
- NAME: "HOST" | |
CONTAINER: "ghcr.io/acts-project/ubuntu2404:67" | |
OPTIONS: --preset vc | |
RUN_TESTS: true | |
ENVIRONMENT: | |
- NAME: "HOST" | |
CONTAINER: "ghcr.io/acts-project/ubuntu2404:67" | |
OPTIONS: --preset vecmem | |
RUN_TESTS: true | |
ENVIRONMENT: | |
- NAME: "HOST" | |
CONTAINER: "ghcr.io/acts-project/ubuntu2404:67" | |
OPTIONS: --preset fastor | |
RUN_TESTS: true | |
ENVIRONMENT: | |
- NAME: "CUDA" | |
CONTAINER: "ghcr.io/acts-project/ubuntu2404_cuda:67" | |
OPTIONS: --preset cuda | |
RUN_TESTS: false | |
ENVIRONMENT: | |
- NAME: "SYCL Intel" | |
CONTAINER: "ghcr.io/acts-project/ubuntu2404_oneapi:67" | |
OPTIONS: --preset sycl | |
RUN_TESTS: false | |
ENVIRONMENT: export SYCLFLAGS="-fsycl" | |
- NAME: "SYCL AMD" | |
CONTAINER: "ghcr.io/acts-project/ubuntu2404_rocm_oneapi:67" | |
OPTIONS: --preset sycl | |
RUN_TESTS: false | |
ENVIRONMENT: | |
# The system to run on. | |
runs-on: ubuntu-latest | |
container: ${{ matrix.PLATFORM.CONTAINER }} | |
# Use BASH as the shell from the image. | |
defaults: | |
run: | |
shell: bash | |
# The build/test steps to execute. | |
steps: | |
# Use a standard checkout of the code. | |
- uses: actions/checkout@v4 | |
# Run the CMake configuration. | |
- name: Configure | |
run: | | |
source ${GITHUB_WORKSPACE}/.github/ci_setup.sh ${{ matrix.PLATFORM.NAME }} | |
${{ matrix.PLATFORM.ENVIRONMENT }} | |
cmake ${{ matrix.PLATFORM.OPTIONS }} -DCMAKE_BUILD_TYPE=${{ matrix.BUILD_TYPE }} -S ${GITHUB_WORKSPACE} -B build | |
# Perform the build. | |
- name: Build | |
run: | | |
source ${GITHUB_WORKSPACE}/.github/ci_setup.sh ${{ matrix.PLATFORM.NAME }} | |
${{ matrix.PLATFORM.ENVIRONMENT }} | |
cmake --build build | |
# Run the unit test(s). | |
- name: Test | |
if: "matrix.PLATFORM.RUN_TESTS" | |
run: | | |
cd build | |
source ${GITHUB_WORKSPACE}/.github/ci_setup.sh ${{ matrix.PLATFORM.NAME }} | |
${{ matrix.PLATFORM.ENVIRONMENT }} | |
ctest --output-on-failure |