Skip to content

Commit f8fb01b

Browse files
committed
Use .env-rhoai for storing RHOAI images
1 parent 3ca59ee commit f8fb01b

File tree

3 files changed

+9
-3
lines changed

3 files changed

+9
-3
lines changed

images/tests/.env-rhoai

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,6 @@
1+
FMS_HF_TUNING_IMAGE=<replace_me>
2+
TEST_TRAINING_CUDA_PYTORCH_241_IMAGE=<replace_me>
3+
TEST_TRAINING_ROCM_PYTORCH_241_IMAGE=<replace_me>
4+
TEST_TRAINING_CUDA_PYTORCH_251_IMAGE=<replace_me>
5+
TEST_TRAINING_ROCM_PYTORCH_251_IMAGE=<replace_me>
6+
NOTEBOOK_IMAGE=<replace_me>

images/tests/Dockerfile

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -24,8 +24,8 @@ WORKDIR /distributed-workloads/tests
2424
# Copy the source from the current directory to the working directory inside the container
2525
COPY tests/ .
2626

27-
# Copy the .env-odh file and the run-test.sh script to the working directory inside the container
28-
COPY images/tests/.env-odh .env-odh
27+
# Copy the .env-rhoai file and the run-test.sh script to the working directory inside the container
28+
COPY images/tests/.env-rhoai .env-rhoai
2929
COPY images/tests/run-test.sh .
3030

3131
# Command to run the tests

images/tests/run-test.sh

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
#!/bin/bash
22

33
set -o allexport
4-
source .env-odh
4+
source .env-rhoai
55
set +o allexport
66

77
gotestsum "$@"

0 commit comments

Comments
 (0)