Skip to content

Commit c2b6e79

Browse files
authored
Fix some tasks about Latex (#20)
* check new latex find * latex updates * revert script * fix gha * fix gha 2 * fix gha 2 * fix gha 3 * fix gha 4 * Update main.yml * Update main.yml * Update main.yml * Update main.yml * Update main.yml * change dir layout
1 parent 6f4b1d5 commit c2b6e79

16 files changed

+141
-49
lines changed

.github/workflows/main.yml

+28-9
Original file line numberDiff line numberDiff line change
@@ -13,14 +13,13 @@ jobs:
1313
run: |
1414
sudo add-apt-repository ppa:ubuntu-toolchain-r/test
1515
sudo apt-get update
16+
sudo apt-get install ninja-build
1617
sudo apt-get install texlive*
1718
- name: Build
1819
run: |
1920
mkdir build
20-
cd build
21-
cmake -D USE_LATEX=ON ..
22-
cmake --build .
23-
cd ..
21+
cmake -G Ninja -S . -B build -D USE_LATEX=ON
22+
cmake --build build
2423
shell: bash
2524
- uses: actions/upload-artifact@v4
2625
with:
@@ -34,17 +33,37 @@ jobs:
3433
submodules: true
3534
- name: Setup environment
3635
run: |
37-
choco install texlive --params="'/scheme:full'" --execution-timeout=10000
36+
scripts\miktex_install.ps1
37+
shell: pwsh
3838
- name: Build
3939
run: |
4040
Import-Module "$env:ChocolateyInstall\helpers\chocolateyProfile.psm1"
4141
refreshenv
4242
mkdir build
43-
cd build
44-
cmake -D USE_LATEX=ON ..
45-
cmake --build .
46-
cd ..
43+
cmake -S . -B build -D USE_LATEX=ON
44+
cmake --build build
45+
shell: pwsh
4746
- uses: actions/upload-artifact@v4
4847
with:
4948
name: windows-artifacts
5049
path: build/bin/
50+
macos-build:
51+
runs-on: macos-latest
52+
steps:
53+
- uses: actions/checkout@v4
54+
with:
55+
submodules: true
56+
- name: Setup environment
57+
run: |
58+
brew install --cask mactex
59+
brew install ninja
60+
- name: Build
61+
run: |
62+
eval "$(/usr/libexec/path_helper)"
63+
mkdir build
64+
cmake -G Ninja -S . -B build -D USE_LATEX=ON
65+
cmake --build build
66+
- uses: actions/upload-artifact@v4
67+
with:
68+
name: macos-artifacts
69+
path: build/bin/

.gitmodules

-3
This file was deleted.

3rdparty/UseLATEX

-1
This file was deleted.

CMakeLists.txt

+7-3
Original file line numberDiff line numberDiff line change
@@ -1,13 +1,17 @@
1-
cmake_minimum_required( VERSION 3.13 )
1+
cmake_minimum_required( VERSION 3.27 )
22

33
message( STATUS "Programming Course Reports" )
4+
project(programming_course_reports)
45

5-
include(${CMAKE_SOURCE_DIR}/cmake/Configure.cmake)
6+
include(${CMAKE_SOURCE_DIR}/cmake/configure.cmake)
67

78
############################### LATEX ###############################
89
option(USE_LATEX OFF)
910
if( USE_LATEX )
10-
include( 3rdparty/UseLATEX/UseLATEX.cmake )
11+
find_package(LATEX REQUIRED)
12+
if(NOT (LATEX_FOUND AND LATEX_PDFLATEX_FOUND))
13+
set(USE_LATEX OFF)
14+
endif()
1115
endif( USE_LATEX )
1216

1317
add_subdirectory(modules)
File renamed without changes.

modules/example/CMakeLists.txt

+7
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,7 @@
1+
message(STATUS "Example tasks")
2+
3+
SUBDIRLIST(subdirs ${CMAKE_CURRENT_SOURCE_DIR})
4+
5+
foreach(subd ${subdirs})
6+
add_subdirectory(${subd})
7+
endforeach()

modules/example/latex/CMakeLists.txt

+41
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,41 @@
1+
get_filename_component(ProjectId ${CMAKE_CURRENT_SOURCE_DIR} NAME)
2+
3+
set(LATEX_OUTPUT_PATH "${CMAKE_BINARY_DIR}/bin")
4+
if (NOT EXISTS ${LATEX_OUTPUT_PATH})
5+
file(MAKE_DIRECTORY ${LATEX_OUTPUT_PATH})
6+
endif ()
7+
8+
if (USE_LATEX)
9+
message( STATUS "-- " ${ProjectId} )
10+
file(GLOB_RECURSE report_files "*.tex")
11+
12+
foreach (report ${report_files})
13+
get_filename_component(report_name ${report} NAME_WE)
14+
list(APPEND list_report_names ${report_name})
15+
endforeach ()
16+
17+
add_custom_target( ${ProjectId}_prebuild
18+
COMMAND ${PDFLATEX_COMPILER} -draftmode -interaction=nonstopmode ${report_files}
19+
WORKING_DIRECTORY ${CMAKE_CURRENT_SOURCE_DIR}
20+
DEPENDS ${report_files})
21+
22+
add_custom_target( ${ProjectId}_pdf
23+
COMMAND ${PDFLATEX_COMPILER} ${report_files}
24+
WORKING_DIRECTORY ${CMAKE_CURRENT_SOURCE_DIR}
25+
DEPENDS ${report_files})
26+
27+
add_custom_target(${ProjectId}_all_formats ALL)
28+
add_dependencies(${ProjectId}_all_formats ${ProjectId}_pdf)
29+
30+
foreach (report_name ${list_report_names})
31+
add_custom_command(
32+
TARGET ${ProjectId}_all_formats
33+
POST_BUILD
34+
COMMAND mv "${CMAKE_CURRENT_SOURCE_DIR}/${report_name}.aux" "${LATEX_OUTPUT_PATH}/${report_name}.aux"
35+
COMMAND mv "${CMAKE_CURRENT_SOURCE_DIR}/${report_name}.log" "${LATEX_OUTPUT_PATH}/${report_name}.log"
36+
COMMAND mv "${CMAKE_CURRENT_SOURCE_DIR}/${report_name}.pdf" "${LATEX_OUTPUT_PATH}/${report_name}.pdf"
37+
)
38+
endforeach ()
39+
else()
40+
message( STATUS "-- ${ProjectId} - NOT BUILD!" )
41+
endif()

modules/task_3/CMakeLists.txt modules/mpi/CMakeLists.txt

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
message(STATUS "Task 3")
1+
message(STATUS "MPI tasks")
22

33
SUBDIRLIST(subdirs ${CMAKE_CURRENT_SOURCE_DIR})
44

modules/task_2/CMakeLists.txt modules/omp/CMakeLists.txt

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
message(STATUS "Task 2")
1+
message(STATUS "OpenMP tasks")
22

33
SUBDIRLIST(subdirs ${CMAKE_CURRENT_SOURCE_DIR})
44

modules/seq/CMakeLists.txt

+7
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,7 @@
1+
message(STATUS "Sequential tasks")
2+
3+
SUBDIRLIST(subdirs ${CMAKE_CURRENT_SOURCE_DIR})
4+
5+
foreach(subd ${subdirs})
6+
add_subdirectory(${subd})
7+
endforeach()

modules/task_4/CMakeLists.txt modules/stl/CMakeLists.txt

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
message(STATUS "Task 4")
1+
message(STATUS "STL tasks")
22

33
SUBDIRLIST(subdirs ${CMAKE_CURRENT_SOURCE_DIR})
44

modules/task_1/CMakeLists.txt modules/tbb/CMakeLists.txt

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
message(STATUS "Task 1")
1+
message(STATUS "TBB tasks")
22

33
SUBDIRLIST(subdirs ${CMAKE_CURRENT_SOURCE_DIR})
44

modules/test_tasks/CMakeLists.txt

-7
This file was deleted.

modules/test_tasks/test_latex/CMakeLists.txt

-22
This file was deleted.

scripts/miktex_install.ps1

+47
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,47 @@
1+
$ErrorActionPreference = "Stop"
2+
3+
$scriptRoot = (Resolve-Path $(If ($PSScriptRoot) { $PSScriptRoot } Else { "." })).Path
4+
5+
$installerPath = "$scriptRoot\basic-miktex-x64.exe"
6+
$installerUrl = 'https://mirrors.rit.edu/CTAN/systems/win32/miktex/setup/windows-x64/basic-miktex-23.10-x64.exe'
7+
8+
(New-Object System.Net.WebClient).DownloadFile($installerUrl, $installerPath)
9+
10+
$pinfo = New-Object System.Diagnostics.ProcessStartInfo
11+
$pinfo.FileName = $installerPath
12+
$pinfo.Arguments = "--unattended --shared --auto-install=yes --paper-size=A4"
13+
$pinfo.RedirectStandardError = $true
14+
$pinfo.RedirectStandardOutput = $true
15+
$pinfo.UseShellExecute = $false
16+
$pinfo.WorkingDirectory = $scriptRoot
17+
18+
Write-Host "Starting MiKTeX installer"
19+
$p = New-Object System.Diagnostics.Process
20+
$p.StartInfo = $pinfo
21+
$p.Start() | Out-Null
22+
23+
Write-Host "Waiting for MiKTeX installer to finish..."
24+
25+
# Start async reads of output streams to avoid deadlock
26+
$p.BeginOutputReadLine()
27+
$p.BeginErrorReadLine()
28+
29+
$p.WaitForExit()
30+
$exitCode = $p.ExitCode
31+
Write-Host "MiKTeX installer exited with code $exitCode"
32+
33+
if ($exitCode -ne 0)
34+
{
35+
throw "MiKTeX installer failed"
36+
}
37+
38+
$env:Path = [System.Environment]::ExpandEnvironmentVariables(
39+
[System.Environment]::GetEnvironmentVariable('Path', 'Machine') + ';' +
40+
[System.Environment]::GetEnvironmentVariable('Path', 'User')
41+
)
42+
refreshenv
43+
44+
initexmf --admin --enable-installer --verbose
45+
initexmf --admin --default-paper-size=a4 --verbose
46+
initexmf --admin --update-fndb --verbose
47+
initexmf --admin --mkmaps --verbose

0 commit comments

Comments
 (0)