Skip to content

Commit

Permalink
Update GitHub action
Browse files Browse the repository at this point in the history
  • Loading branch information
davidstone committed Feb 2, 2024
1 parent b85313d commit 5e2a373
Show file tree
Hide file tree
Showing 7 changed files with 9 additions and 7 deletions.
4 changes: 3 additions & 1 deletion .github/workflows/build-and-test.yml
Original file line number Diff line number Diff line change
Expand Up @@ -9,4 +9,6 @@ on:

jobs:
build:
uses: davidstone/cmake_strict_defaults/.github/workflows/build-and-test.yml@main
runs-on: ubuntu-latest
steps:
- uses: davidstone/cmake_strict_defaults@main
2 changes: 1 addition & 1 deletion dependencies/bounded
Submodule bounded updated 84 files
+3 −1 .github/workflows/build-and-test.yml
+3 −501 CMakeLists.txt
+1 −1 dependencies/benchmark
+1 −1 dependencies/cmake_strict_defaults
+1 −1 dependencies/numeric-traits
+1 −1 dependencies/operators
+1 −1 dependencies/std_module
+139 −0 source/bounded/CMakeLists.txt
+0 −0 source/bounded/include/bounded/arithmetic/common_arithmetic.hpp
+0 −0 source/bounded/include/bounded/assert.hpp
+0 −0 source/bounded/include/bounded/assume.hpp
+0 −0 source/bounded/include/bounded/conditional.hpp
+0 −0 source/bounded/test/assert-NDEBUG.cpp
+0 −0 source/bounded/test/assert.cpp
+0 −0 source/bounded/test/assume.cpp
+0 −0 source/bounded/test/check_in_range.cpp
+0 −0 source/bounded/test/comparison.cpp
+0 −0 source/bounded/test/conditional.cpp
+0 −0 source/bounded/test/stream.cpp
+0 −0 source/bounded/test/to_integer.cpp
+333 −0 source/containers/CMakeLists.txt
+0 −0 source/containers/test/algorithms/adjacent.cpp
+0 −0 source/containers/test/algorithms/chunk_by.cpp
+0 −0 source/containers/test/algorithms/concatenate_view.cpp
+0 −0 source/containers/test/algorithms/copy_or_relocate_from.cpp
+0 −0 source/containers/test/algorithms/erase.cpp
+0 −0 source/containers/test/algorithms/filter.cpp
+0 −0 source/containers/test/algorithms/join.cpp
+0 −0 source/containers/test/algorithms/split.cpp
+0 −0 source/containers/test/algorithms/zip.cpp
+0 −0 source/containers/test/append.cpp
+0 −0 source/containers/test/array.cpp
+0 −0 source/containers/test/assign.cpp
+0 −0 source/containers/test/assign_to_empty.cpp
+0 −0 source/containers/test/at.cpp
+0 −0 source/containers/test/bidirectional_linked_list.cpp
+0 −0 source/containers/test/clear.cpp
+0 −0 source/containers/test/concatenate.cpp
+0 −0 source/containers/test/dynamic_array.cpp
+0 −0 source/containers/test/flat_map.cpp
+0 −0 source/containers/test/forward_linked_list.cpp
+0 −0 source/containers/test/insert.cpp
+0 −0 source/containers/test/is_container.cpp
+0 −0 source/containers/test/lazy_push_back.cpp
+0 −0 source/containers/test/lazy_push_back_into_capacity.cpp
+0 −0 source/containers/test/linear_map.cpp
+0 −0 source/containers/test/map_benchmark.cpp
+0 −0 source/containers/test/pop_back.cpp
+0 −0 source/containers/test/push_back.cpp
+0 −0 source/containers/test/push_back_into_capacity.cpp
+0 −0 source/containers/test/shrink_to_fit.cpp
+0 −0 source/containers/test/small_buffer_optimized_vector.cpp
+0 −0 source/containers/test/sort/chunked_insertion_sort.cpp
+0 −0 source/containers/test/sort/double_buffered_ska_sort.cpp
+0 −0 source/containers/test/sort/ska_sort.cpp
+0 −0 source/containers/test/sort/ska_sort_benchmark.cpp
+0 −0 source/containers/test/sort/sort.cpp
+0 −0 source/containers/test/sort/sort_benchmark.cpp
+0 −0 source/containers/test/sort/sort_exactly_n.cpp
+0 −0 source/containers/test/sort/sort_test_data.cpp
+0 −0 source/containers/test/sort/test_sort.cpp
+0 −0 source/containers/test/sort/to_radix_sort_key.cpp
+0 −0 source/containers/test/stable_vector.cpp
+0 −0 source/containers/test/static_vector.cpp
+0 −0 source/containers/test/string.cpp
+0 −0 source/containers/test/take.cpp
+0 −0 source/containers/test/test_associative_container.cpp
+0 −0 source/containers/test/test_reserve_and_capacity.cpp
+0 −0 source/containers/test/test_sequence_container.cpp
+0 −0 source/containers/test/test_set_size.cpp
+0 −0 source/containers/test/trivial_inplace_function.cpp
+0 −0 source/containers/test/uninitialized_dynamic_array.cpp
+0 −0 source/containers/test/vector.cpp
+0 −0 source/containers/test/vector_benchmark.cpp
+0 −0 source/containers/test/wrap_range.cpp
+64 −0 source/tv/CMakeLists.txt
+0 −0 source/tv/test/is_valid_index.cpp
+0 −0 source/tv/test/optional.cpp
+0 −0 source/tv/test/transform.cpp
+0 −0 source/tv/test/tuple.cpp
+0 −0 source/tv/test/tuple_cat.cpp
+0 −0 source/tv/test/tuple_size.cpp
+0 −0 source/tv/test/variant.cpp
+0 −0 source/tv/test/visit.cpp
2 changes: 1 addition & 1 deletion dependencies/cmake_strict_defaults
2 changes: 1 addition & 1 deletion dependencies/std_module

0 comments on commit 5e2a373

Please sign in to comment.