Skip to content

Commit

Permalink
modifyed makefile as systdes did not exist. ALso used a live docker c…
Browse files Browse the repository at this point in the history
…ontainer to make builds faster
  • Loading branch information
PromishKandel committed Dec 30, 2024
1 parent fa15a24 commit ab2a909
Show file tree
Hide file tree
Showing 2 changed files with 13 additions and 13 deletions.
15 changes: 7 additions & 8 deletions .github/workflows/Integration.yml
Original file line number Diff line number Diff line change
Expand Up @@ -2,24 +2,23 @@ name: Continuous Integration

on:
push:
branches:
- main
branches: [main]
pull_request:
branches:
- main
branches: [main]

jobs:
build-documentation:
name: Build LaTeX Documentation
runs-on: ubuntu-latest

container:
image: danteev/texlive:latest
# No need to build your own Dockerfile or push an image

steps:
- name: Checkout Code
uses: actions/checkout@v3

- name: Install LaTeX
run: sudo apt-get update && sudo apt-get install -y texlive-full

# No apt-get install needed because the container already has TeX Live
- name: Build PDFs
working-directory: docs
run: |
Expand Down
11 changes: 6 additions & 5 deletions docs/Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -13,8 +13,9 @@ MG:
MIS:
cd Design/SoftDetailedDes && make && cd ../..

SystDes:
cd Design/SystDesign && make && cd ../..
#Does not exist
# SystDes:
# cd Design/SystDesign && make && cd ../..

PS:
cd ProblemStatementAndGoals && make && cd ..
Expand All @@ -37,7 +38,7 @@ Refl:
UGde:
cd UserGuide && make && cd ../..

clean: cleanSRS cleanMG cleanMIS cleanSystDes cleanPS cleanVnVP cleanVnVR cleanDevP cleanHazA cleanRefl cleanUGde
clean: cleanSRS cleanMG cleanMIS cleanPS cleanVnVP cleanVnVR cleanDevP cleanHazA cleanRefl cleanUGde

cleanPS:
cd ProblemStatementAndGoals && make clean && cd ..
Expand All @@ -51,8 +52,8 @@ cleanMG:
cleanMIS:
cd Design/SoftDetailedDes && make clean && cd ..

cleanSystDes:
cd Design/SystDesign && make clean && cd ..
# cleanSystDes:
# cd Design/SystDesign && make clean && cd ..

cleanVnVP:
cd VnVPlan && make clean && cd ..
Expand Down

0 comments on commit ab2a909

Please sign in to comment.