Skip to content

Commit 519434f

Browse files
committed
Minor CI pipeline fixes
Signed-off-by: Gowtham Suresh Kumar <[email protected]>
1 parent 0a0b5c5 commit 519434f

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

.github/actions/build_export_docker/action.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@ runs:
1212
run: pushd e2e_tests/docker_image && docker build -t ${{ inputs.image-name }} -f ${{ inputs.image-name }}.Dockerfile . && popd
1313
shell: bash
1414
- 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
1616
shell: bash
1717
- name: Upload artifact
1818
uses: actions/upload-artifact@v3

.github/workflows/ci.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -191,7 +191,7 @@ jobs:
191191
run: docker run -v $(pwd):/tmp/parsec -w /tmp/parsec ghcr.io/parallaxsecond/parsec-service-test-cross-compile /tmp/parsec/test/cross-compile.sh
192192
- name: Run the cross compiler tests using image built on the CI
193193
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
195195

196196
links:
197197
name: Check links

0 commit comments

Comments
 (0)