Skip to content

Commit 2836fc0

Browse files
committed
test running workflow with durable sys
1 parent 26eed61 commit 2836fc0

File tree

1 file changed

+2
-1
lines changed

1 file changed

+2
-1
lines changed

.github/workflows/main.yml

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -28,6 +28,7 @@ jobs:
2828
# ** FOR GENERAL USE, SHOULD NOT NEED TO CHANGE **
2929
instance: iris
3030
artifact_dir: build-artifacts
31+
sys_dir: durable
3132

3233
# Note: test_reports value is duplicated in test_flags environment variable
3334
test_reports: test-reports
@@ -54,7 +55,7 @@ jobs:
5455
5556
# Run InterSystems IRIS Instance
5657
docker pull $container_image
57-
docker run -d -h $instance --name $instance -v $GITHUB_WORKSPACE:/source:rw -v $GITHUB_WORKSPACE/$test_reports:/$test_reports:rw -v $GITHUB_WORKSPACE/$artifact_dir:/$artifact_dir:rw --init $container_image
58+
docker run -d -h $instance --name $instance -v $GITHUB_WORKSPACE:/source:rw -v $GITHUB_WORKSPACE/$test_reports:/$test_reports:rw -v $GITHUB_WORKSPACE/$artifact_dir:/$artifact_dir:rw -v $GITHUB_WORKSPACE/$sys_dir:/$sys_dir:rw --env ISC_DATA_DIRECTORY=/$sys_dir --init $container_image
5859
echo halt > wait
5960
# Wait for instance to be ready
6061
until docker exec --interactive $instance iris session $instance < wait; do sleep 1; done

0 commit comments

Comments
 (0)