You've already forked comprehensive-rust
mirror of
https://github.com/google/comprehensive-rust.git
synced 2025-12-20 22:29:12 +02:00
Don’t automatically install recommended packages (#2923)
Co-authored-by: Michael Kerscher <kerscher@google.com>
This commit is contained in:
2
.github/workflows/apt-get-install/action.yml
vendored
2
.github/workflows/apt-get-install/action.yml
vendored
@@ -41,4 +41,4 @@ runs:
|
||||
- name: Installing ${{ inputs.packages }}
|
||||
shell: bash
|
||||
run: |
|
||||
sudo apt-get install --quiet --yes ${{ inputs.packages }}
|
||||
sudo apt-get install --quiet --yes --no-install-recommends ${{ inputs.packages }}
|
||||
|
||||
14
.github/workflows/install-mdbook/action.yml
vendored
14
.github/workflows/install-mdbook/action.yml
vendored
@@ -15,7 +15,19 @@ runs:
|
||||
- name: Install mdbook-pandoc dependencies
|
||||
uses: ./.github/workflows/apt-get-install
|
||||
with:
|
||||
packages: texlive texlive-luatex texlive-lang-cjk texlive-lang-arabic librsvg2-bin fonts-noto
|
||||
packages: >
|
||||
fonts-noto
|
||||
fonts-noto-cjk
|
||||
fonts-noto-color-emoji
|
||||
fonts-noto-extra
|
||||
fonts-symbola
|
||||
librsvg2-bin
|
||||
texlive
|
||||
texlive-fonts-recommended
|
||||
texlive-lang-arabic
|
||||
texlive-lang-cjk
|
||||
texlive-lang-japanese
|
||||
texlive-luatex
|
||||
|
||||
- name: Install mdbook-pandoc
|
||||
run: |
|
||||
|
||||
Reference in New Issue
Block a user