Skip to content

Commit

Permalink
adding debbuging commands
Browse files Browse the repository at this point in the history
  • Loading branch information
charly-bg committed Aug 23, 2024
1 parent 4673e7a commit 91d562e
Showing 1 changed file with 5 additions and 3 deletions.
8 changes: 5 additions & 3 deletions .github/workflows/docker.yml
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand All @@ -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 \
Expand Down

0 comments on commit 91d562e

Please sign in to comment.