Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

[TEST] Testing CI updates #576

Closed
wants to merge 2 commits into from
Closed
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
10 changes: 9 additions & 1 deletion .circleci/config.yml
Original file line number Diff line number Diff line change
Expand Up @@ -2,9 +2,15 @@ version: 2
jobs:
build:
docker:
- image: htsspecs/circle-ci-image:0.7
- image: ghcr.io/xu-cheng/texlive-full:latest
steps:
- checkout
- run:
name: Install additional tools
command: |
apk add --no-cache curl git make nodejs npm patch
npm install --global [email protected]

- run:
name: Compile the LaTeX
command: |
Expand Down Expand Up @@ -34,6 +40,8 @@ jobs:

- run:
name: Post PDFs to Github PR
environment:
NODE_PATH: /usr/lib/node_modules
command: |
.circleci/pdf_comment.js
- store_artifacts:
Expand Down
2 changes: 1 addition & 1 deletion .circleci/pdf_comment.js
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
#!/usr/bin/env nodejs
#!/usr/bin/env node

const bot = require("circle-github-bot").create();
const fs = require('fs');
Expand Down
1 change: 1 addition & 0 deletions SAMv1.tex
Original file line number Diff line number Diff line change
Expand Up @@ -4,6 +4,7 @@
\definecolor{gray}{rgb}{0.7,0.7,0.7}
\usepackage{framed}
\usepackage{enumitem}
\usepackage{footnotehyper}
\usepackage{longtable}
\usepackage{makecell}
\usepackage[pdfborder={0 0 0},hyperfootnotes=false]{hyperref}
Expand Down