File tree Expand file tree Collapse file tree 1 file changed +3
-2
lines changed Expand file tree Collapse file tree 1 file changed +3
-2
lines changed Original file line number Diff line number Diff line change 54
54
55
55
# Run InterSystems IRIS Instance
56
56
docker pull $container_image
57
- docker run -d -h $instance --name $instance -v $GITHUB_WORKSPACE:/source:rw -v $GITHUB_WORKSPACE/$test_reports:/$test_reports -v $GITHUB_WORKSPACE/$artifact_dir:/$artifact_dir --init $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
58
echo halt > wait
59
59
# Wait for instance to be ready
60
60
until docker exec --interactive $instance iris session $instance < wait; do sleep 1; done
@@ -81,13 +81,14 @@ jobs:
81
81
echo "do ##class(SourceControl.Git.Utils).BuildCEInstallationPackage(file)" >> package.script
82
82
echo "halt" >> package.script
83
83
docker exec --interactive $instance iris session $instance -B < package.script
84
+ ls $GITHUB_WORKSPACE/$artifact_dir
84
85
85
86
- name : Attach CE Artifact
86
87
uses : actions/upload-artifact@v1
87
88
if : always()
88
89
with :
89
90
name : " PreIRISInstallationPackage"
90
- path : ${{ env.artifact_dir }}/*.xml
91
+ path : ${{ env.GITHUB_WORKSPACE }}/${{ env. artifact_dir }}/*.xml
91
92
92
93
- name : XUnit Viewer
93
94
id : xunit-viewer
You can’t perform that action at this time.
0 commit comments