praca_magisterska/.github/workflows/main.yml
Copilot e76ac00ad6
Add comprehensive thesis completion game plan, tracking system, automation scripts, and publication-ready LaTeX chapter content with extensive citations (#4)
* Initial plan

* Add comprehensive thesis completion game plan (deadline Feb 10)

Co-authored-by: kuhyx <147418882+kuhyx@users.noreply.github.com>

* Add quick start guide and daily progress tracking template

Co-authored-by: kuhyx <147418882+kuhyx@users.noreply.github.com>

* Add visual tracker and planning system overview

Co-authored-by: kuhyx <147418882+kuhyx@users.noreply.github.com>

* Update work schedule to 4hrs weekdays, 8hrs weekends (144 total hrs)

Co-authored-by: kuhyx <147418882+kuhyx@users.noreply.github.com>

* Update dates to Jan 16-Feb 15, add helper scripts for data collection

Co-authored-by: kuhyx <147418882+kuhyx@users.noreply.github.com>

* Add complete LaTeX content for chapters 5-8, graph generation script, auto-compile script

Co-authored-by: kuhyx <147418882+kuhyx@users.noreply.github.com>

* Add extensive citations throughout chapters, fix Linux-specific issues, replace subjective language with objective data

Co-authored-by: kuhyx <147418882+kuhyx@users.noreply.github.com>

* Fix CI pipeline: use test_pdf instead of test target in workflow

Co-authored-by: kuhyx <147418882+kuhyx@users.noreply.github.com>

* Co-authored-by: kuhyx <147418882+kuhyx@users.noreply.github.com>

---------

Co-authored-by: copilot-swe-agent[bot] <198982749+Copilot@users.noreply.github.com>
Co-authored-by: kuhyx <147418882+kuhyx@users.noreply.github.com>
2026-01-15 17:57:44 +01:00

49 lines
1.5 KiB
YAML

name: CI
on: [push, pull_request]
jobs:
test:
runs-on: ubuntu-latest
strategy:
matrix:
compiler: ['lualatex', 'pdflatex']
faculty: ['eiti', 'meil']
lang: ['eng','pol']
thesis: ['EngineerThesis', 'MasterThesis']
fail-fast: false
steps:
- name: Install LaTeX dependencies
run: |
sudo apt-get install -y \
biber \
latexmk \
python3-pip \
texlive \
texlive-bibtex-extra \
texlive-fonts-extra \
texlive-latex-extra \
texlive-lang-polish \
texlive-luatex \
tex-gyre
- name: Checkout WUT-Thesis repository
uses: actions/checkout@v2
- name: Install Python dependencies
run: python3 -m pip install --user -r requirements.txt
- name: Generate test cases
run: scons generate_tests
working-directory: latex
- name: Generate PDF file
run: cp test/${{matrix.lang}}/${{matrix.faculty}}/${{matrix.thesis}}.textest main.tex && scons all
working-directory: latex
- name: Verify build with referential text
run: |
scons test_pdf pdf=build/pdfs/${{matrix.compiler}}.pdf \
ref=test/${{matrix.lang}}/${{matrix.faculty}}/${{matrix.thesis}}_${{matrix.compiler}}.txt
working-directory: latex