在我的管道中,我有以下步骤:运行:ubuntu-latest ... - 名称:安装其他软件包#图形:transfig gnuplot inkscape#pdf实用程序:poppler-utils(
在我的管道中我有以下步骤:
runs-on: ubuntu-latest
...
- name: install additional packages
# graphics: transfig gnuplot inkscape
# pdf utilities: poppler-utils (pdfinfo, pdftotext)
# Perl modules Capture::Tiny in libcapture-tiny-perl
run: sudo apt-get install -y transfig gnuplot inkscape poppler-utils libcapture-tiny-perl
- name: install perl modules
run: |
sudo cpan App::cpanminus
sudo cpanm Cwd File::Spec::Functions Capture::Tiny DateTime DateTime::Format::ISO8601
第一步运行 30 秒,而第二步有时需要 3-4 分钟。我想知道在 ubuntu 上是否可以通过 apt-get 获得模块,或者还有其他方法可以加速...缓存?