Skip to content

Commit

Permalink
Update cmake-multi-platform.yml
Browse files Browse the repository at this point in the history
  • Loading branch information
franziska-wegner committed Dec 5, 2023
1 parent 4c1401c commit c69e7d4
Showing 1 changed file with 5 additions and 3 deletions.
8 changes: 5 additions & 3 deletions .github/workflows/cmake-multi-platform.yml
Original file line number Diff line number Diff line change
Expand Up @@ -106,14 +106,15 @@ jobs:
sudo apt update
sudo apt-get install texlive texlive-latex-recommended texlive-extra-utils texlive-latex-extra texlive-font-utils
# if: startsWith(matrix.config.os,'ubuntu-')
if: ${{ startsWith(matrix.config.os, 'ubuntu-') }}
if: ${{ startsWith(runner.os, 'ubuntu-') }}

- name: Install LaTeX (MacOS)
run: |
brew update
brew install --cask mactex;
echo "/Library/TeX/texbin/" >> $GITHUB_PATH
if: matrix.config.os == 'macos-latest'
# if: matrix.config.os == 'macos-latest'
if: ${{ startsWith(runner.os, 'macos-') }}

- name: Install LaTeX (Windows)
uses: teatimeguest/setup-texlive-action@v3
Expand All @@ -124,7 +125,8 @@ jobs:
babel-dutch
cjk
bibtex
if: matrix.config.os == 'windows-latest'
# if: matrix.config.os == 'windows-latest'
if: ${{ startsWith(runner.os, 'windows-') }}

- name: Install Doxygen (Ubuntu)
run: |
Expand Down

0 comments on commit c69e7d4

Please sign in to comment.