Skip to content

Commit

Permalink
CI: Install texlive
Browse files Browse the repository at this point in the history
  • Loading branch information
effigies committed May 8, 2024
1 parent 058c371 commit d1a509b
Show file tree
Hide file tree
Showing 2 changed files with 28 additions and 0 deletions.
17 changes: 17 additions & 0 deletions .circleci/config.yml
Original file line number Diff line number Diff line change
Expand Up @@ -20,6 +20,23 @@ jobs:
name: Install package
command: pip install .[test]

- restore_cache:
keys:
- apt-v0
paths:
- /var/lib/apt

- run:
name: Install texlive
command: |
sudo apt-get update
sudo apt-get install -y --no-install-recommends texlive
- save_cache:
key: apt-v0
paths:
- /var/lib/apt

- restore_cache:
keys:
- tf-v0
Expand Down
11 changes: 11 additions & 0 deletions .github/workflows/build_test_deploy.yml
Original file line number Diff line number Diff line change
Expand Up @@ -94,6 +94,17 @@ jobs:
- name: Display Python version
run: python -c "import sys; print(sys.version)"

- uses: actions/cache@v4
with:
path: /var/lib/apt
key: apt-cache-v0
restore-keys: |
apt-cache-v0
- name: Install tex
run: |
sudo apt-get update
sudo apt-get install -y --no-install-recommends texlive
- name: Install package
run: pip install $PACKAGE
- name: Verify installation
Expand Down

0 comments on commit d1a509b

Please sign in to comment.