-
-
Notifications
You must be signed in to change notification settings - Fork 448
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
5951: Fixing static linking (for Windows) r=hkaiser a=hkaiser - add github actions - flyby: unify handling of excluded targets for Windows github builders potentially resolves #5908 5954: refactor: rename itr to correct type (`reduce`) r=hkaiser a=bhumitattarde ## Proposed Changes - renamed iterator to correct type (`FwdIter` to `InItr`) in some `reduce` overloads Co-authored-by: Hartmut Kaiser <[email protected]> Co-authored-by: Bhumit Attarde <[email protected]>
- Loading branch information
Showing
50 changed files
with
366 additions
and
207 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,43 @@ | ||
# Copyright (c) 2022 Hartmut Kaiser | ||
# | ||
# SPDX-License-Identifier: BSL-1.0 | ||
# Distributed under the Boost Software License, Version 1.0. (See accompanying | ||
# file LICENSE_1_0.txt or copy at http://www.boost.org/LICENSE_1_0.txt) | ||
# | ||
# examples that should not be run on Github windows builders | ||
# | ||
tests.examples.1d_stencil.1d_stencil_6 | ||
tests.examples.1d_stencil.1d_stencil_7 | ||
tests.examples.async_io.async_io_simple | ||
tests.examples.modules.checkpoint.1d_stencil_4_checkpoint | ||
tests.examples.modules.program_options.config_file_types | ||
tests.examples.modules.program_options.custom_syntax | ||
tests.examples.modules.program_options.env_options | ||
tests.examples.modules.program_options.first | ||
tests.examples.modules.program_options.multiple_sources | ||
tests.examples.modules.program_options.option_groups | ||
tests.examples.modules.program_options.options_description | ||
tests.examples.modules.program_options.options_hierarchy | ||
tests.examples.modules.program_options.real | ||
tests.examples.modules.program_options.regex | ||
tests.examples.modules.program_options.response_file | ||
tests.examples.modules.resiliency_distributed.distributed.tcp.async_replay_distributed | ||
tests.examples.modules.resiliency_distributed.distributed.tcp.async_replicate_distributed | ||
tests.examples.modules.resiliency.1d_stencil_replay_exception | ||
tests.examples.modules.resiliency.1d_stencil_replay_validate | ||
tests.examples.modules.resiliency.async_replay | ||
tests.examples.modules.resiliency.async_replicate_vote | ||
tests.examples.modules.resiliency.async_replicate | ||
tests.examples.modules.resiliency.dataflow_replicate | ||
tests.examples.modules.resiliency.version | ||
tests.examples.modules.resource_partitioner.async_customization | ||
tests.examples.modules.resource_partitioner.guided_pool_test | ||
tests.examples.modules.resource_partitioner.oversubscribing_resource_partitioner | ||
tests.examples.modules.resource_partitioner.simple_resource_partitioner | ||
tests.examples.modules.resource_partitioner.simplest_resource_partitioner_1 | ||
tests.examples.modules.resource_partitioner.simplest_resource_partitioner_2 | ||
tests.examples.quickstart.1d_wave_equation | ||
tests.examples.quickstart.partitioned_vector_spmd_foreach | ||
tests.examples.quickstart.sort_by_key_demo | ||
tests.examples.transpose.transpose_block_numa | ||
tests.examples.modules.collectives.distributed.tcp.channel_communicator |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,62 @@ | ||
# Copyright (c) 2020 Mikael Simberg | ||
# Copyright (c) 2022 Hartmut Kaiser | ||
# | ||
# SPDX-License-Identifier: BSL-1.0 | ||
# Distributed under the Boost Software License, Version 1.0. (See accompanying | ||
# file LICENSE_1_0.txt or copy at http://www.boost.org/LICENSE_1_0.txt) | ||
|
||
name: Windows CI (Release, Static) | ||
|
||
on: [pull_request] | ||
|
||
jobs: | ||
build: | ||
runs-on: windows-latest | ||
|
||
steps: | ||
- uses: actions/checkout@v2 | ||
- uses: jwlawson/[email protected] | ||
with: | ||
cmake-version: '3.22.x' | ||
- name: Install dependencies | ||
run: | | ||
md C:\projects | ||
$client = new-object System.Net.WebClient | ||
$client.DownloadFile("https://rostam.cct.lsu.edu/download/builder/vcpkg-export-hpx-dependencies-2022.7z","C:\projects\vcpkg-export-hpx-dependencies.7z") | ||
7z x C:\projects\vcpkg-export-hpx-dependencies.7z -y -oC:\projects\vcpkg | ||
- name: Configure | ||
shell: bash | ||
run: | | ||
cmake . -Bbuild -G'Visual Studio 17 2022' \ | ||
-DCMAKE_BUILD_TYPE=Release \ | ||
-DCMAKE_TOOLCHAIN_FILE='C:/projects/vcpkg/scripts/buildsystems/vcpkg.cmake' \ | ||
-DHPX_WITH_STATIC_LINKING=ON \ | ||
-DHPX_WITH_FETCH_ASIO=ON \ | ||
-DHPX_WITH_EXAMPLES=ON \ | ||
-DHPX_WITH_TESTS=ON \ | ||
-DHPX_WITH_TESTS_UNIT=ON \ | ||
-DHPX_WITH_DEPRECATION_WARNINGS=OFF \ | ||
-DHPX_WITH_TESTS_MAX_THREADS_PER_LOCALITY=2 \ | ||
-DHPX_WITH_CHECK_MODULE_DEPENDENCIES=On \ | ||
-DCMAKE_CXX_FLAGS=-permissive- | ||
- name: Build | ||
shell: bash | ||
run: | | ||
cmake --build build --config Release \ | ||
--target ALL_BUILD \ | ||
-- -maxcpucount:2 -verbosity:minimal -nologo | ||
- name: Install | ||
shell: bash | ||
run: | | ||
cmake --install build --config Release | ||
- name: Test | ||
run: | | ||
Set-Alias -Name grep -Value "C:\Program Files\Git\usr\bin\grep.exe" | ||
Set-Alias -Name sed -Value "C:\Program Files\Git\usr\bin\sed.exe" | ||
cd build | ||
ctest ` | ||
--output-on-failure ` | ||
--build-config Release ` | ||
--tests-regex tests.examples ` | ||
--exclude-regex ` | ||
$(grep -v -e ^# -e ^$ D:/a/hpx/hpx/.github/workflows/tests.examples.targets | sed ':b;N;$!bb;s/\n/|/g') |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.