diff --git a/.github/workflows/docker.yml b/.github/workflows/docker.yml index 4aee707f..31971f72 100644 --- a/.github/workflows/docker.yml +++ b/.github/workflows/docker.yml @@ -74,10 +74,12 @@ jobs: buildah info buildah push ${{ matrix.service_name }}:${{ github.sha }} docker-archive:temp.tar docker load -i temp.tar - # buildah push ${{ matrix.service_name }}:${{ github.sha }} docker-daemon:${{ matrix.service_name }}:${{ github.sha }} sudo find / -type d \( -name "mnt" -o -name "proc" \) -prune -o -type f -exec du -h {} + | sort -rh | head -n 10 df -h docker system df + rm -f temp.tar + sudo find / -type d \( -name "mnt" -o -name "proc" \) -prune -o -type f -exec du -h {} + | sort -rh | head -n 10 + df -h docker images - name: Create $(pwd)/tmp/Unity/Unity_lic.ulf @@ -90,14 +92,14 @@ jobs: docker run --rm \ -v $(pwd)/tmp/Unity:/root/.local/share/unity3d/Unity \ -v $(pwd):/app \ - ${{ matrix.service_name }}:${{ github.sha }} \ + localhost/${{ matrix.service_name }}:${{ github.sha }} \ sh -c "cd /app ; ls -la ; chmod +x ci-editmode-test.sh ; ./ci-editmode-test.sh" - name: Run test conversion of urn:decentraland:off-chain:base-avatars:brown_pants run: | docker run --rm \ -v $(pwd)/tmp/Unity:/root/.local/share/unity3d/Unity \ - ${{ matrix.service_name }}:${{ github.sha }} \ + localhost/${{ matrix.service_name }}:${{ github.sha }} \ node --trace-warnings --abort-on-uncaught-exception --unhandled-rejections=strict dist/test-conversion.js \ --baseUrl https://peer.decentraland.org/content \ --pointer urn:decentraland:off-chain:base-avatars:brown_pants \