8000 Windows: tlmgr: command not found #2 · Issue #713 · r-lib/actions · GitHub
[go: up one dir, main page]
More Web Proxy on the site http://driver.im/
Skip to content
Windows: tlmgr: command not found #2 #713
Closed
@cdriveraus

Description

@cdriveraus

I believe this issue should perhaps still be open, or at least, I'm facing a problem with tlmgr not found after using the setup-tinytex@v2 action.
#671

Logs of failed build:
https://github.com/cdriveraus/ctsem/actions/runs/4500812938/jobs/7920422033

Relevant .yaml in use :

on:
  push:
    branches: [main, master,rstantools]
  pull_request:
    branches: [main, master,rstantools]

name: R-CMD-check

jobs:
  R-CMD-check:
    runs-on: ${{ matrix.config.os }}

    name: ${{ matrix.config.os }} (${{ matrix.config.r }})


    strategy:
      fail-fast: false
      matrix:
        config:
          - {os: macos-latest,   r: 'release', newRstan: false}
          - {os: windows-latest, r: 'release', newRstan: false}
          - {os: windows-latest, r: 'release', newRstan: true}
          - {os: ubuntu-latest,   r: 'devel', http-user-agent: 'release', newRstan: false}
          - {os: ubuntu-latest,   r: 'release', newRstan: false}
          - {os: ubuntu-latest,   r: 'oldrel-1', newRstan: false}

    env:
      R_REMOTES_NO_ERRORS_FROM_WARNINGS: true
      GITHUB_PAT: ${{ secrets.GITHUB_TOKEN }}
      R_KEEP_PKG_SOURCE: yes

    steps:
      - uses: actions/checkout@v3

      - uses: r-lib/actions/setup-pandoc@v2
          
      - uses: r-lib/actions/setup-r@v2
        with:
          r-version: ${{ matrix.config.r }}
          http-user-agent: ${{ matrix.config.http-user-agent }}
          use-public-rspm: true

      - uses: r-lib/actions/setup-r-dependencies@v2
        with:
          extra-packages: any::rcmdcheck, local::.
          needs: check
      
      - name: executable Permissions
        run: |
          chmod +x configure

      - name: rstan Upgrade
        if: ${{ matrix.config.newRstan == true }}
        run: |
          install.packages("StanHeaders", repos = c('https://mc-stan.org/r-packages/', getOption('repos')))
          install.packages("rstan", repos = c('https://mc-stan.org/r-packages/', getOption('repos')))
        shell: Rscript {0}

          
      - uses: r-lib/actions/setup-tinytex@v2
        env: 
          TINYTEX_INSTALLER: TinyTeX
          
      - name: Install additional LaTeX packages
        run: |
          tlmgr install biblatex-apa biblatex babel-english csquotes preprint mathtools caption biber
          
      - uses: r-lib/actions/check-r-package@v2
        with:
          error-on: '"error"'
          upload-snapshots: true

Metadata

Metadata

Assignees

No one assigned

    Labels

    bugan unexpected problem or unintended behavior

    Type

    No type

    Projects

    No projects

    Milestone

    No milestone

    Relationships

    None yet

    Development

    No branches or pull requests

    Issue actions

      0