Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
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
2 changes: 1 addition & 1 deletion .devcontainer/devcontainer.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "Parallel Programming Course",
"image": "ghcr.io/learning-process/ppc-ubuntu:latest",
"image": "ghcr.io/learning-process/ppc-ubuntu:1.1",
"customizations": {
"vscode": {
"extensions": [
Expand Down
2 changes: 1 addition & 1 deletion .github/actions/clang-tidy-native/action.yml
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@ inputs:
clang_tidy_version:
description: 'Clang-tidy version to use'
required: false
default: '20'
default: '21'
outputs:
total_comments:
description: 'Total number of clang-tidy issues found'
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/docker.yml
Original file line number Diff line number Diff line change
Expand Up @@ -47,4 +47,4 @@ jobs:
file: ./docker/ubuntu.Dockerfile
platforms: linux/amd64,linux/arm64
push: ${{ github.ref == 'refs/heads/master' }}
tags: ghcr.io/learning-process/ppc-ubuntu:1.0
tags: ghcr.io/learning-process/ppc-ubuntu:1.1
2 changes: 1 addition & 1 deletion .github/workflows/perf.yml
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@ jobs:
ubuntu-gcc-build-perf-stats:
runs-on: ubuntu-24.04
container:
image: ghcr.io/learning-process/ppc-ubuntu:1.0
image: ghcr.io/learning-process/ppc-ubuntu:1.1
credentials:
username: ${{ github.actor }}
password: ${{ secrets.GITHUB_TOKEN }}
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/pre-commit.yml
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@ jobs:
pre-commit:
runs-on: ubuntu-24.04
container:
image: ghcr.io/learning-process/ppc-ubuntu:1.0
image: ghcr.io/learning-process/ppc-ubuntu:1.1
credentials:
username: ${{ github.actor }}
password: ${{ secrets.GITHUB_TOKEN }}
Expand Down
16 changes: 8 additions & 8 deletions .github/workflows/static-analysis-pr.yml
Original file line number Diff line number Diff line change
Expand Up @@ -23,7 +23,7 @@ jobs:
clang-tidy:
runs-on: ubuntu-24.04
container:
image: ghcr.io/learning-process/ppc-ubuntu:1.0
image: ghcr.io/learning-process/ppc-ubuntu:1.1
credentials:
username: ${{ github.actor }}
password: ${{ secrets.GITHUB_TOKEN }}
Expand All @@ -46,22 +46,22 @@ jobs:
-D CMAKE_C_COMPILER_LAUNCHER=ccache -D CMAKE_CXX_COMPILER_LAUNCHER=ccache
-D CMAKE_BUILD_TYPE=RELEASE -DCMAKE_EXPORT_COMPILE_COMMANDS=ON
env:
CC: clang-20
CXX: clang++-20
CC: clang-21
CXX: clang++-21

- name: Build project
run: |
cmake --build build --parallel
env:
CC: clang-20
CXX: clang++-20
CC: clang-21
CXX: clang++-21

- name: Run clang-tidy
uses: ./.github/actions/clang-tidy-native
id: review
with:
exclude: "3rdparty build"
clang_tidy_version: "20"
clang_tidy_version: "21"
- if: steps.review.outputs.total_comments > 0
run: |
echo "clang-tidy run has failed. See previous 'Run clang-tidy' stage logs"
Expand All @@ -71,7 +71,7 @@ jobs:
- clang-tidy
runs-on: ubuntu-24.04
container:
image: ghcr.io/learning-process/ppc-ubuntu:1.0
image: ghcr.io/learning-process/ppc-ubuntu:1.1
credentials:
username: ${{ github.actor }}
password: ${{ secrets.GITHUB_TOKEN }}
Expand Down Expand Up @@ -109,7 +109,7 @@ jobs:
id: review
with:
exclude: "3rdparty build docs_venv .git .pytest_cache .ruff_cache xml"
clang_tidy_version: "20"
clang_tidy_version: "21"
- if: steps.review.outputs.total_comments > 0
run: |
echo "clang-tidy run has failed. See previous 'Run clang-tidy' stage logs"
Expand Down
36 changes: 18 additions & 18 deletions .github/workflows/ubuntu.yml
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@ jobs:
gcc-build:
runs-on: ${{ matrix.os }}
container:
image: ghcr.io/learning-process/ppc-ubuntu:1.0
image: ghcr.io/learning-process/ppc-ubuntu:1.1
credentials:
username: ${{ github.actor }}
password: ${{ secrets.GITHUB_TOKEN }}
Expand Down Expand Up @@ -60,7 +60,7 @@ jobs:
- gcc-build
runs-on: ${{ matrix.os }}
container:
image: ghcr.io/learning-process/ppc-ubuntu:1.0
image: ghcr.io/learning-process/ppc-ubuntu:1.1
credentials:
username: ${{ github.actor }}
password: ${{ secrets.GITHUB_TOKEN }}
Expand Down Expand Up @@ -92,7 +92,7 @@ jobs:
- gcc-test
runs-on: ${{ matrix.os }}
container:
image: ghcr.io/learning-process/ppc-ubuntu:1.0
image: ghcr.io/learning-process/ppc-ubuntu:1.1
credentials:
username: ${{ github.actor }}
password: ${{ secrets.GITHUB_TOKEN }}
Expand All @@ -116,7 +116,7 @@ jobs:
clang-build:
runs-on: ${{ matrix.os }}
container:
image: ghcr.io/learning-process/ppc-ubuntu:1.0
image: ghcr.io/learning-process/ppc-ubuntu:1.1
credentials:
username: ${{ github.actor }}
password: ${{ secrets.GITHUB_TOKEN }}
Expand All @@ -139,14 +139,14 @@ jobs:
-D CMAKE_C_COMPILER_LAUNCHER=ccache -D CMAKE_CXX_COMPILER_LAUNCHER=ccache
-D CMAKE_BUILD_TYPE=RELEASE -DCMAKE_INSTALL_PREFIX=install
env:
CC: clang-20
CXX: clang++-20
CC: clang-21
CXX: clang++-21
- name: Build project
run: |
cmake --build build --parallel
env:
CC: clang-20
CXX: clang++-20
CC: clang-21
CXX: clang++-21
- name: Install project
run: |
cmake --build build --target install
Expand All @@ -162,7 +162,7 @@ jobs:
- clang-build
runs-on: ${{ matrix.os }}
container:
image: ghcr.io/learning-process/ppc-ubuntu:1.0
image: ghcr.io/learning-process/ppc-ubuntu:1.1
credentials:
username: ${{ github.actor }}
password: ${{ secrets.GITHUB_TOKEN }}
Expand Down Expand Up @@ -194,7 +194,7 @@ jobs:
- clang-test
runs-on: ${{ matrix.os }}
container:
image: ghcr.io/learning-process/ppc-ubuntu:1.0
image: ghcr.io/learning-process/ppc-ubuntu:1.1
credentials:
username: ${{ github.actor }}
password: ${{ secrets.GITHUB_TOKEN }}
Expand All @@ -220,7 +220,7 @@ jobs:
- clang-build
runs-on: ${{ matrix.os }}
container:
image: ghcr.io/learning-process/ppc-ubuntu:1.0
image: ghcr.io/learning-process/ppc-ubuntu:1.1
credentials:
username: ${{ github.actor }}
password: ${{ secrets.GITHUB_TOKEN }}
Expand All @@ -245,14 +245,14 @@ jobs:
-D ENABLE_ADDRESS_SANITIZER=ON -D ENABLE_UB_SANITIZER=ON -D ENABLE_LEAK_SANITIZER=ON
-D CMAKE_INSTALL_PREFIX=install
env:
CC: clang-20
CXX: clang++-20
CC: clang-21
CXX: clang++-21
- name: Build project
run: |
cmake --build build --parallel
env:
CC: clang-20
CXX: clang++-20
CC: clang-21
CXX: clang++-21
- name: Install project
run: |
cmake --build build --target install
Expand All @@ -268,7 +268,7 @@ jobs:
- clang-sanitizer-build
runs-on: ${{ matrix.os }}
container:
image: ghcr.io/learning-process/ppc-ubuntu:1.0
image: ghcr.io/learning-process/ppc-ubuntu:1.1
credentials:
username: ${{ github.actor }}
password: ${{ secrets.GITHUB_TOKEN }}
Expand Down Expand Up @@ -306,7 +306,7 @@ jobs:
- clang-sanitizer-test
runs-on: ${{ matrix.os }}
container:
image: ghcr.io/learning-process/ppc-ubuntu:1.0
image: ghcr.io/learning-process/ppc-ubuntu:1.1
credentials:
username: ${{ github.actor }}
password: ${{ secrets.GITHUB_TOKEN }}
Expand Down Expand Up @@ -334,7 +334,7 @@ jobs:
- clang-test-extended
runs-on: ubuntu-24.04
container:
image: ghcr.io/learning-process/ppc-ubuntu:1.0
image: ghcr.io/learning-process/ppc-ubuntu:1.1
credentials:
username: ${{ github.actor }}
password: ${{ secrets.GITHUB_TOKEN }}
Expand Down
2 changes: 1 addition & 1 deletion 3rdparty/googletest
Submodule googletest updated 64 files
+15 −5 BUILD.bazel
+2 −2 CMakeLists.txt
+4 −4 MODULE.bazel
+4 −12 README.md
+8 −9 WORKSPACE
+94 −59 ci/linux-presubmit.sh
+15 −5 ci/macos-presubmit.sh
+36 −14 ci/windows-presubmit.bat
+7 −7 docs/_layouts/default.html
+92 −62 docs/advanced.md
+0 −13 docs/faq.md
+41 −8 docs/gmock_cook_book.md
+8 −8 docs/quickstart-bazel.md
+3 −3 docs/quickstart-cmake.md
+4 −3 docs/reference/actions.md
+34 −4 docs/reference/matchers.md
+98 −1 docs/reference/testing.md
+61 −9 googlemock/include/gmock/gmock-actions.h
+284 −49 googlemock/include/gmock/gmock-matchers.h
+4 −5 googlemock/include/gmock/gmock-more-actions.h
+0 −5 googlemock/include/gmock/internal/gmock-internal-utils.h
+11 −2 googlemock/include/gmock/internal/gmock-port.h
+1 −1 googlemock/src/gmock-spec-builders.cc
+43 −36 googlemock/test/gmock-actions_test.cc
+1 −1 googlemock/test/gmock-function-mocker_test.cc
+183 −0 googlemock/test/gmock-matchers-arithmetic_test.cc
+159 −9 googlemock/test/gmock-matchers-comparisons_test.cc
+302 −11 googlemock/test/gmock-matchers-containers_test.cc
+19 −0 googlemock/test/gmock-matchers-misc_test.cc
+56 −27 googlemock/test/gmock-more-actions_test.cc
+4 −5 googlemock/test/gmock-spec-builders_test.cc
+4 −4 googlemock/test/gmock_output_test_golden.txt
+0 −3 googletest/CMakeLists.txt
+6 −6 googletest/README.md
+1 −1 googletest/cmake/internal_utils.cmake
+7 −0 googletest/include/gtest/gtest-assertion-result.h
+29 −0 googletest/include/gtest/gtest-matchers.h
+95 −39 googletest/include/gtest/gtest-param-test.h
+55 −49 googletest/include/gtest/gtest-printers.h
+65 −69 googletest/include/gtest/gtest-typed-test.h
+7 −4 googletest/include/gtest/gtest.h
+40 −44 googletest/include/gtest/internal/gtest-internal.h
+48 −14 googletest/include/gtest/internal/gtest-param-util.h
+10 −180 googletest/include/gtest/internal/gtest-port.h
+4 −0 googletest/src/gtest-internal-inl.h
+10 −10 googletest/src/gtest-printers.cc
+130 −39 googletest/src/gtest.cc
+51 −17 googletest/test/BUILD.bazel
+1 −0 googletest/test/googletest-color-test.py
+1 −1 googletest/test/googletest-death-test-test.cc
+38 −0 googletest/test/googletest-fail-if-no-test-linked-test-with-disabled-test_.cc
+38 −0 googletest/test/googletest-fail-if-no-test-linked-test-with-enabled-test_.cc
+165 −0 googletest/test/googletest-fail-if-no-test-linked-test.py
+91 −0 googletest/test/googletest-fail-if-no-test-selected-test.py
+19 −0 googletest/test/googletest-filter-unittest.py
+19 −17 googletest/test/googletest-json-output-unittest.py
+1 −1 googletest/test/googletest-output-test-golden-lin.txt
+71 −1 googletest/test/googletest-param-test-test.cc
+73 −19 googletest/test/googletest-printers-test.cc
+2 −2 googletest/test/googletest-setuptestsuite-test_.cc
+11 −9 googletest/test/gtest_unittest.cc
+45 −43 googletest/test/gtest_xml_output_unittest.py
+5 −1 googletest/test/gtest_xml_output_unittest_.cc
+3 −3 googletest_deps.bzl
2 changes: 1 addition & 1 deletion docker/ubuntu.Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,7 @@ RUN set -e \
gcovr zip \
&& wget -q https://apt.llvm.org/llvm.sh \
&& chmod +x llvm.sh \
&& ./llvm.sh 20 all \
&& ./llvm.sh 21 all \
&& rm llvm.sh \
&& apt-get clean \
&& rm -rf /var/lib/apt/lists/*
Expand Down
Loading