Skip to content

Commit

Permalink
Try to defeat unpredictable home dir issues.
Browse files Browse the repository at this point in the history
  • Loading branch information
ohinds committed Jul 6, 2023
1 parent 424616b commit bad8093
Showing 1 changed file with 5 additions and 3 deletions.
8 changes: 5 additions & 3 deletions .github/workflows/guide-notebooks-slurm.yml
Original file line number Diff line number Diff line change
Expand Up @@ -2,8 +2,8 @@ name: Guide Notebooks Regression
run-name: Guide Notebooks Regression
on: [push]
env:
SINGULARITY_IMAGE: /om/weka/gablab/ohinds/img/tensorflow_latest-gpu.sif
ACTION_RUNNER_DIR: /om/weka/gablab/ohinds/sw/actions-runner
BASE_DIR: /om/weka/gablab/ohinds
ACTION_RUNNER_DIR: ${BASE_DIR}/sw/actions-runner
jobs:
start_node_runner:
runs-on: [self-hosted, nobrainer-self-hosted-ci]
Expand All @@ -13,6 +13,7 @@ jobs:
- name: sbatch
id: sbatch
run: |
set -xe
JOBID=$(sbatch \
--time=100 \
--mem=16G \
Expand All @@ -35,7 +36,8 @@ jobs:
guide_notebooks_regression:
needs: start_node_runner
env:
WORKDIR: ${{ github.workspace }}
SINGULARITY_IMAGE: ${BASE_DIR}/img/tensorflow_latest-gpu.sif
WORKDIR: ${BASE_DIR}/${ACTION_RUNNER_DIR}/_work/nobrainer/nobrainer
runs-on: [self-hosted, nobrainer-ci-self-hosted-runner]
steps:
- name: clone
Expand Down

0 comments on commit bad8093

Please sign in to comment.