Trigger CI (cache empty)

This commit is contained in:
Rik 2020-08-14 19:25:09 +02:00
parent 17e22f6bde
commit f05fb4c694
2 changed files with 4 additions and 7 deletions

View File

@ -19,7 +19,7 @@ jobs:
~/nix/store
~/nix/bin
# Using number to enforce fresh cache.
key: ${{ runner.os }}-14
key: ${{ runner.os }}-15
- name: Install Nix
uses: cachix/install-nix-action@v10
@ -45,8 +45,5 @@ jobs:
sudo cp --force --recursive ~/nix/bin/* $NIX_BIN/
fi
- run: which pdflatex
- name: Check existence of pdflatex
run: pdflatex --version
- name: Check existence of LaTeX
run: dvisvgm --version

View File

@ -3,7 +3,7 @@
let
inherit (nixpkgs) pkgs;
myTex = with pkgs; texlive.combine {
inherit (texlive) scheme-basic pdflatex;
inherit (texlive) scheme-basic dvisvgm;
};
in [
myTex