Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

fix: Add detailed output for compile stage #131

Merged
merged 4 commits into from
May 11, 2022
Merged

fix: Add detailed output for compile stage #131

merged 4 commits into from
May 11, 2022

Conversation

gaocegege
Copy link
Member

@gaocegege gaocegege commented May 10, 2022

[+] ⌚ parse build.MIDI and download/cache dependencies 0.0s
 => 💽 (cached) download oh-my-zsh                                                                                                                                0.0s
 => 💽 (cached) download ms-vscode.cpptools-1.7.1                                                                                                                 0.0s
 => 💽 (cached) download github.copilot-1.12.5517                                                                                                                 0.0s
 => 💽 (cached) download dbaeumer.vscode-eslint-2.2.3                                                                                                             0.0s
[+] 🐋 build MIDI environment 2.8s (24/25) 
 => docker-image://ghcr.io/tensorchord/midi-ssh-from-scratch:0.0.1-amd64                                                                                         0.8s
 => => resolve ghcr.io/tensorchord/midi-ssh-from-scratch:0.0.1-amd64                                                                                             0.8s
 => local://cache-dir                                                                                                                                            0.0s
 => => transferring cache-dir: 107.09kB                                                                                                                          0.0s
 => mkdir /etc/apt                                                                                                                                               0.0s
 => mkdir /etc                                                                                                                                                   0.0s
 => docker-image://docker.io/nvidia/cuda:11.6.0-cudnn8-devel-ubuntu20.04                                                                                         2.5s
 => => resolve docker.io/nvidia/cuda:11.6.0-cudnn8-devel-ubuntu20.04                                                                                             2.5s
 => 💽 (cached) mkfile /etc/apt/sources.list                                                                                                                      0.0s
 => 💽 (cached) merge (docker-image://docker.io/nvidia/cuda:11.6.0-cudnn8-devel-ubuntu20.04, mkfile /etc/apt/sources.list)                                        0.0s
 => 💽 (cached) mkfile /etc/pip.conf                                                                                                                              0.0s
 => 💽 (cached) merge (merge (docker-image://docker.io/nvidia/cuda:11.6.0-cudnn8-devel-ubuntu20.04, mkfile /etc/apt/sources.list), mkfile /etc/pip.conf)          0.0s
 => 💽 (cached) sh -c apt-get update && apt-get install -y --no-install-recommends curl openssh-client python3 python3-pip zsh                                    0.0s
 => 💽 (cached) apt-get install -y --no-install-recommends gcc                                                                                                    0.0s
 => 💽 (cached) diff (sh -c apt-get update && apt-get install -y --no-install-recommends curl openssh-client python3 python3-pip zsh) -> (apt-get install -y      0.0s
 => 💽 (cached) pip install jupyter                                                                                                                               0.0s
 => 💽 (cached) diff (sh -c apt-get update && apt-get install -y --no-install-recommends curl openssh-client python3 python3-pip zsh) -> (pip install jupyter     0.0s
 => 💽 (cached) copy /usr/bin/midi-ssh /var/midi/bin/midi-ssh                                                                                                     0.0s
 => 💽 (cached) copy /ms-vscode.cpptools-1.7.1/extension /root/.vscode-server/extensions/ms-vscode.cpptools-1.7.1                                                 0.0s
 => 💽 (cached) copy /github.copilot-1.12.5517/extension /root/.vscode-server/extensions/github.copilot-1.12.5517                                                 0.0s
 => 💽 (cached) copy /dbaeumer.vscode-eslint-2.2.3/extension /root/.vscode-server/extensions/dbaeumer.vscode-eslint-2.2.3                                         0.0s
 => 💽 (cached) merge (copy /ms-vscode.cpptools-1.7.1/extension /root/.vscode-server/extensions/ms-vscode.cpptools-1.7.1, copy /github.copilot-1.12.5517/exte     0.0s
 => 💽 (cached) copy /oh-my-zsh /root/.oh-my-zsh                                                                                                                  0.0s
 => 💽 (cached) mkfile /root/install.sh                                                                                                                           0.0s
 => 💽 (cached) bash /root/install.sh                                                                                                                             0.0s
 => 💽 (cached) diff (sh -c apt-get update && apt-get install -y --no-install-recommends curl openssh-client python3 python3-pip zsh) -> (bash /root/install.     0.0s
 => 💽 (cached) merge (sh -c apt-get update && apt-get install -y --no-install-recommends curl openssh-client python3 python3-pip zsh, diff (sh -c apt-get up     0.0s
 => exporting to oci image format                                                                                                                                0.3s
 => => exporting layers                                                                                                                                          0.0s
 => => exporting manifest sha256:da508c1962536a77bb87c8750722d80d54499338e51e71db9e17e970079d556f                                                                0.0s
 => => exporting config sha256:2f161d64cceed1b626a992a420fc695e1755ed5b8d143af8183bdee383885f46                                                                  0.0s
 => => sending tarball                                                                                                                                           0.3s

Signed-off-by: Ce Gao cegao@tensorchord.ai

gaocegege added 4 commits May 10, 2022 18:33
Signed-off-by: Ce Gao <cegao@tensorchord.ai>
Signed-off-by: Ce Gao <cegao@tensorchord.ai>
Signed-off-by: Ce Gao <cegao@tensorchord.ai>
Signed-off-by: Ce Gao <cegao@tensorchord.ai>
@gaocegege gaocegege requested a review from VoVAllen May 10, 2022 11:58
Copy link
Member

@VoVAllen VoVAllen left a comment

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

LGTM. One question, is 💽 a good icon for cache? Is there any similar usage of this?

@gaocegege
Copy link
Member Author

I am not sure about it. Many tools (like JINA) use emoji heavily in the SDK. But they do not have a cache mechanism.

@gaocegege gaocegege merged commit 8aa2ea8 into main May 11, 2022
@gaocegege gaocegege deleted the progress-1 branch May 11, 2022 01:30
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
No open projects
Archived in project
Development

Successfully merging this pull request may close these issues.

2 participants