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 382e63f commit cd3de42Copy full SHA for cd3de42
.github/workflows/core.yml
@@ -248,6 +248,19 @@ jobs:
248
timeout-minutes: 15
249
250
251
+ - name: Run Irksome smoke tests
252
+ # Only test Irksome in real mode
253
+ if: |
254
+ inputs.run_tests &&
255
+ (success() || steps.install.conclusion == 'success') &&
256
+ matrix.arch == 'default'
257
+ run: |
258
+ . venv/bin/activate
259
+ git clone --depth 1 https://github.com/firedrakeproject/irksome.git irksome-repo
260
+ pip install --verbose ./irksome-repo
261
+ python -m pytest -n 8 --verbose irksome-repo/tests
262
+ timeout-minutes: 10
263
+
264
- name: Run Firedrake tests (nprocs = 1)
265
if: inputs.run_tests && (success() || steps.install.conclusion == 'success')
266
run: |
0 commit comments