File tree Expand file tree Collapse file tree 2 files changed +2
-2
lines changed
actions/build_export_docker Expand file tree Collapse file tree 2 files changed +2
-2
lines changed Original file line number Diff line number Diff line change 12
12
run : pushd e2e_tests/docker_image && docker build -t ${{ inputs.image-name }} -f ${{ inputs.image-name }}.Dockerfile . && popd
13
13
shell : bash
14
14
- name : Export the docker container
15
- run : docker save ${{ inputs.image-name }} | gzip > /tmp/${{ inputs.image-name }}.tar
15
+ run : docker save ${{ inputs.image-name }} > /tmp/${{ inputs.image-name }}.tar
16
16
shell : bash
17
17
- name : Upload artifact
18
18
uses : actions/upload-artifact@v3
Original file line number Diff line number Diff line change @@ -191,7 +191,7 @@ jobs:
191
191
run : docker run -v $(pwd):/tmp/parsec -w /tmp/parsec ghcr.io/parallaxsecond/parsec-service-test-cross-compile /tmp/parsec/test/cross-compile.sh
192
192
- name : Run the cross compiler tests using image built on the CI
193
193
if : ${{ env.TEST_CROSS_DOCKER_IMAGE == 'parsec-service-test-cross-compile' }}
194
- run : docker run -v $(pwd):/tmp/parsec -w "${{ env.TEST_CROSS_DOCKER_IMAGE }}" /tmp/parsec/test/cross-compile.sh
194
+ run : docker run -v $(pwd):/tmp/parsec -w /tmp/parsec "${{ env.TEST_CROSS_DOCKER_IMAGE }}" /tmp/parsec/test/cross-compile.sh
195
195
196
196
links :
197
197
name : Check links
You can’t perform that action at this time.
0 commit comments