From af096e747046f0faad576f052334b657a71ca355 Mon Sep 17 00:00:00 2001 From: Franziska Wegner <57569315+franziska-wegner@users.noreply.github.com> Date: Tue, 5 Dec 2023 08:50:12 -0800 Subject: [PATCH] Remove Latex installation for MacOS and Windows cmake-multi-platform.yml --- .github/workflows/cmake-multi-platform.yml | 37 ++++++++++++---------- 1 file changed, 20 insertions(+), 17 deletions(-) diff --git a/.github/workflows/cmake-multi-platform.yml b/.github/workflows/cmake-multi-platform.yml index a27e57d5..596fc4b5 100644 --- a/.github/workflows/cmake-multi-platform.yml +++ b/.github/workflows/cmake-multi-platform.yml @@ -84,6 +84,7 @@ jobs: # with: # args: install mingw --version=8.1.0 -y + # Compared to Window and MacOS best option with stable ~2 min installation time. - name: Install LaTeX (Linux) if: startsWith(matrix.os,'ubuntu-') run: | @@ -93,24 +94,26 @@ jobs: sudo apt-get install texlive texlive-latex-recommended texlive-extra-utils texlive-latex-extra texlive-font-utils shell: bash - - name: Install LaTeX (MacOS) - if: startsWith(matrix.os,'macos-') - run: | - brew update - brew install --cask mactex; - echo "/Library/TeX/texbin/" >> $GITHUB_PATH - shell: bash + # Takes too long > 13 min + # - name: Install LaTeX (MacOS) + # if: startsWith(matrix.os,'macos-') + # run: | + # brew update + # brew install --cask mactex; + # echo "/Library/TeX/texbin/" >> $GITHUB_PATH + # shell: bash - - name: Install LaTeX (Windows) - if: startsWith(matrix.os, 'windows-') - uses: teatimeguest/setup-texlive-action@v3 - with: - packages: >- - scheme-medium - collection-latexextra - babel-dutch - cjk - bibtex + # Takes too long >> 25 min + # - name: Install LaTeX (Windows) + # if: startsWith(matrix.os, 'windows-') + # uses: teatimeguest/setup-texlive-action@v3 + # with: + # packages: >- + # scheme-medium + # collection-latexextra + # babel-dutch + # cjk + # bibtex # - name: Install Doxygen # run: |