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 3d20d63 commit a45a644Copy full SHA for a45a644
.github/workflows/test.yml
@@ -84,11 +84,14 @@ jobs:
84
85
- name: Set up slurm
86
if: ${{ matrix.cluster_type == 'slurm' }}
87
+ # docker build can lead to race condition -> image "docker.io/library/ipp-cluster:slurm": already exists
88
+ # see https://github.com/mlflow/mlflow/pull/20779
89
+ # work-a-round fix: docker compose again if first call failed
90
run: |
91
export DOCKER_BUILDKIT=1
92
export COMPOSE_DOCKER_CLI_BUILD=1
93
cd ci/slurm
- docker compose up -d --build
94
+ docker compose up -d --build || docker compose up -d --build
95
96
- name: Install Python (conda) ${{ matrix.python }}
97
if: ${{ matrix.cluster_type == 'mpi' }}
0 commit comments