mirror of
https://github.com/soconnor0919/honors-thesis.git
synced 2026-02-05 05:56:31 -05:00
Remove .DS_Store and ignore it
Some checks failed
Build Proposal and Thesis / build (push) Failing after 4s
Some checks failed
Build Proposal and Thesis / build (push) Failing after 4s
This commit is contained in:
27
.github/workflows/build.yml
vendored
27
.github/workflows/build.yml
vendored
@@ -2,21 +2,32 @@ name: Build Proposal and Thesis
|
|||||||
|
|
||||||
on:
|
on:
|
||||||
push:
|
push:
|
||||||
branches: ["main"]
|
branches: [main]
|
||||||
pull_request:
|
pull_request:
|
||||||
branches: ["main"]
|
branches: [main]
|
||||||
|
|
||||||
jobs:
|
jobs:
|
||||||
build:
|
build:
|
||||||
runs-on: ubuntu-latest
|
runs-on: ubuntu-latest
|
||||||
|
container: ghcr.io/xu-cheng/texlive-alpine:latest
|
||||||
steps:
|
steps:
|
||||||
- uses: actions/checkout@v3
|
- name: Install system dependencies
|
||||||
|
run: apk add --no-cache git make bash
|
||||||
|
|
||||||
- name: Install LaTeX
|
- uses: actions/checkout@v4
|
||||||
run: |
|
|
||||||
sudo apt-get update
|
- name: Cache TeX Live
|
||||||
sudo apt-get install -y texlive-latex-base texlive-fonts-recommended texlive-fonts-extra texlive-latex-extra texlive-bibtex-extra latexmk
|
uses: actions/cache@v4
|
||||||
|
with:
|
||||||
|
path: |
|
||||||
|
/tmp/texlive
|
||||||
|
~/.texlive*
|
||||||
|
key: texlive-${{ runner.os }}-${{ hashFiles('**/*.tex') }}
|
||||||
|
restore-keys: |
|
||||||
|
texlive-${{ runner.os }}-
|
||||||
|
|
||||||
|
- name: Create TeX Live directory
|
||||||
|
run: mkdir -p /tmp/texlive
|
||||||
|
|
||||||
- name: Build Thesis
|
- name: Build Thesis
|
||||||
run: |
|
run: |
|
||||||
|
|||||||
3
.gitignore
vendored
3
.gitignore
vendored
@@ -19,3 +19,6 @@ build/
|
|||||||
|
|
||||||
# context directory
|
# context directory
|
||||||
context
|
context
|
||||||
|
|
||||||
|
# OS files
|
||||||
|
.DS_Store
|
||||||
|
|||||||
BIN
proposal/.DS_Store
vendored
BIN
proposal/.DS_Store
vendored
Binary file not shown.
Reference in New Issue
Block a user