Skip to content
Merged
Changes from 1 commit
Commits
Show all changes
31 commits
Select commit Hold shift + click to select a range
db870cc
[CI] Testing the C++20 compilation
loumalouomega Jun 21, 2025
5ea376a
Update ci.yml
roigcarlo Jun 23, 2025
71ee2f0
Merge branch 'master' into ci/test-c++20
loumalouomega Jun 26, 2025
833f484
fixing c++20 problems
RiccardoRossi Jun 26, 2025
cfc7f84
Merge branch 'ci/test-c++20' of github.com:KratosMultiphysics/Kratos
roigcarlo Jul 7, 2025
ab3ee3c
Fix compilation warnings and deprecations
roigcarlo Jul 8, 2025
b30740c
Cleaning code to avoid type problems
roigcarlo Jul 8, 2025
0a8cefc
Merge branch 'master' into ci/test-c++20
loumalouomega Jul 21, 2025
5ded964
Merge branch 'master' into ci/test-c++20
loumalouomega Sep 3, 2025
67a644f
Merge branch 'master' into ci/test-c++20
loumalouomega Oct 15, 2025
34ba715
[Core] Fix UTF8 literal issue in MSVC with C++20
loumalouomega Oct 15, 2025
9c1d414
Revert UTF-8
loumalouomega Oct 16, 2025
503d6ac
[LinearSolversApplication] Update Eigen library to 5.0.0
loumalouomega Oct 16, 2025
49a2fc7
Merge pull request #13888 from KratosMultiphysics/linear/update-eigen…
loumalouomega Oct 18, 2025
4c606cb
Cast DomainType to double for nodal_distance calculation
RiccardoRossi Oct 19, 2025
81b0d38
Merge pull request #13886 from KratosMultiphysics/ci/c++20-literals-utf8
loumalouomega Oct 20, 2025
5a7da1d
Merge branch 'master' into ci/test-c++20
loumalouomega Oct 21, 2025
f0b43a2
Merge branch 'master' into ci/test-c++20
loumalouomega Oct 29, 2025
e3f50b2
Merge master
loumalouomega Oct 30, 2025
db45dd3
[CoSimulationApplication] Update `CoSimIO` to last version
loumalouomega Oct 30, 2025
3a8020c
Revert "[CoSimulationApplication] Update `CoSimIO` to last version"
loumalouomega Oct 30, 2025
865cda5
Merge branch 'master' into ci/test-c++20
loumalouomega Nov 3, 2025
cc345d2
bump boost from unity core and intel to 1.87
roigcarlo Nov 3, 2025
3248d9e
Deactivate PCH
loumalouomega Nov 3, 2025
b431ab5
Merge branch 'master' into ci/test-c++20
loumalouomega Nov 28, 2025
8ffa202
Merge branch 'master' into ci/test-c++20
roigcarlo Dec 15, 2025
be32d2b
Merge branch 'ci/test-c++20' of github.com:KratosMultiphysics/Kratos …
roigcarlo Dec 16, 2025
ec97218
Fix system boost being used in non-unity and intel builds
roigcarlo Dec 16, 2025
d773a1c
Merge branch 'master' into ci/test-c++20
loumalouomega Dec 16, 2025
078df61
Fixing BaseSocketCommunication
roigcarlo Dec 16, 2025
275c010
Merge branch 'ci/test-c++20' of github.com:KratosMultiphysics/Kratos …
roigcarlo Dec 16, 2025
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
4 changes: 2 additions & 2 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -265,7 +265,7 @@ jobs:

- name: Download boost
run: |
$url = "https://archives.boost.io/release/1.74.0/source/boost_1_74_0.tar.gz"
Copy link
Member Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Thanks

Copy link
Member Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Looks like is not enough

$url = "https://archives.boost.io/release/1.87.0/source/boost_1_87_0.tar.gz"
(New-Object System.Net.WebClient).DownloadFile($url, "$env:TEMP\boost.tar.gz")
7z.exe x "$env:TEMP\boost.tar.gz" -o"$env:TEMP\boostArchive" -y | Out-Null
7z.exe x "$env:TEMP\boostArchive" -o"$env:TEMP\boost" -y | Out-Null
Expand Down Expand Up @@ -481,7 +481,7 @@ jobs:

- name: Download boost
run: |
$url = "https://archives.boost.io/release/1.74.0/source/boost_1_74_0.tar.gz"
$url = "https://archives.boost.io/release/1.87.0/source/boost_1_87_0.tar.gz"
(New-Object System.Net.WebClient).DownloadFile($url, "$env:TEMP\boost.tar.gz")
7z.exe x "$env:TEMP\boost.tar.gz" -o"$env:TEMP\boostArchive" -y | Out-Null
7z.exe x "$env:TEMP\boostArchive" -o"$env:TEMP\boost" -y | Out-Null
Expand Down
Loading