Skip to content

Multi Setup MallocMC Compiletime #16

Multi Setup MallocMC Compiletime

Multi Setup MallocMC Compiletime #16

Workflow file for this run

name: Examples
on:
push:
branches:
- master
- main
pull_request:
branches:
- master
- main
env:
CPM_SOURCE_CACHE: ${{ github.workspace }}/cpm_modules2
jobs:
build:
runs-on: ubuntu-24.04
steps:
- uses: actions/checkout@v3
- uses: actions/cache@v3
with:
path: "**/cpm_modules2"
key: ${{ github.workflow }}-cpm-modules-${{ hashFiles('**/CMakeLists.txt', '**/*.cmake') }}
- name: install_boost
run: |
sudo apt-get update
sudo apt-get install libboost-all-dev
- name: configure
run: cmake -Sexamples -Bbuild -DCMAKE_BUILD_TYPE=Debug -Dalpaka_ACC_CPU_B_SEQ_T_SEQ_ENABLE:BOOL=ON
- name: build
run: cmake --build build -j4
- name: run
run: find build/examples -name 'KitGenBench*' -type f -executable -not -wholename '*/CMakeFiles/*' -exec {} \;