We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 52e6545 commit 278140cCopy full SHA for 278140c
.github/workflows/standalone.yml .github/workflows/examples.yml.github/workflows/standalone.yml renamed to .github/workflows/examples.yml
@@ -1,4 +1,4 @@
1
-name: Standalone
+name: Examples
2
3
on:
4
push:
@@ -31,10 +31,10 @@ jobs:
31
sudo apt-get install libboost-all-dev
32
33
- name: configure
34
- run: cmake -Sstandalone -Bbuild -DCMAKE_BUILD_TYPE=Debug -Dalpaka_ACC_CPU_B_SEQ_T_SEQ_ENABLE:BOOL=ON
+ run: cmake -Sexamples -Bbuild -DCMAKE_BUILD_TYPE=Debug -Dalpaka_ACC_CPU_B_SEQ_T_SEQ_ENABLE:BOOL=ON
35
36
- name: build
37
run: cmake --build build -j4
38
39
- name: run
40
- run: ./build/KitGenBench
+ run: find build/examples -name 'KitGenBench*' -type f -executable -not -wholename '*/CMakeFiles/*' -exec {} \;
0 commit comments