Skip to content

Commit f192f3c

Browse files
authored
Merge pull request #337 from c-bata/disable-scheduled-runs-pytorch-visualization
Disable scheduled runs for PyTorch and visualization temporarily
2 parents ee49c5c + 62deb7d commit f192f3c

File tree

2 files changed

+7
-2
lines changed

2 files changed

+7
-2
lines changed

.github/workflows/pytorch.yml

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -79,6 +79,9 @@ jobs:
7979
env:
8080
OMP_NUM_THREADS: 1
8181
- name: Run skorch example
82+
# TODO(c-bata): Remove the following if statement after fixing the example.
83+
# See https://github.com/optuna/optuna-examples/issues/336 for details.
84+
if: github.event_name != 'schedule'
8285
run: |
8386
python pytorch/skorch_simple.py
8487
env:

.github/workflows/visualization.yml

Lines changed: 4 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,8 +1,10 @@
11
name: visualization
22

33
on:
4-
schedule:
5-
- cron: '0 15 * * *'
4+
# TODO(c-bata): Uncomment the following lines after fixing the examples.
5+
# See https://github.com/optuna/optuna-examples/issues/336 for details.
6+
# schedule:
7+
# - cron: '0 15 * * *'
68
pull_request:
79
paths:
810
- 'visualization/**'

0 commit comments

Comments
 (0)