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 92a6de6 commit 9d59f47Copy full SHA for 9d59f47
.github/workflows/daily.yml renamed to .github/workflows/devcloud.yml
@@ -2,16 +2,10 @@
2
#
3
# SPDX-License-Identifier: BSD-3-Clause
4
5
-name: Daily
+name: Devcloud
6
7
on:
8
- push:
9
-
10
- pull_request:
11
workflow_dispatch:
12
- # 8am UTC is 12am PST, 1am PDT
13
- schedule:
14
- - cron: '0 8 * * *'
15
16
jobs:
17
checks:
Dockerfile
@@ -0,0 +1,14 @@
1
+# SPDX-FileCopyrightText: Intel Corporation
+#
+# SPDX-License-Identifier: BSD-3-Clause
+
+FROM docker.io/intel/oneapi:latest
+COPY . .
+RUN cmake -B build -DENABLE_SYCL=on \
+&& cmake --build build -j \
+&& mpirun -n 2 ./build/src/example1 \
+&& mpirun -n 2 ./build/src/example2 \
+&& mpirun -n 2 ./build/src/example3
+CMD ["/bin/bash"]
0 commit comments