Skip to content

Commit 8edc7d3

Browse files
authored
Merge pull request #1872 from DARMA-tasking/1871-release-1-1-1-beta-9
1871: Create `1.1.1 beta v9` release candidate
2 parents a0932b0 + 41a66fb commit 8edc7d3

File tree

254 files changed

+5115
-6069
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

254 files changed

+5115
-6069
lines changed
Lines changed: 16 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,16 @@
1+
name: Check Workflow Generation
2+
3+
on: pull_request
4+
5+
jobs:
6+
check-workflow-generation:
7+
runs-on: ubuntu-latest
8+
steps:
9+
- uses: actions/checkout@master
10+
11+
- name: Install dependencies
12+
run: sudo apt-get update && sudo apt-get install -yq cpanminus && cpanm --sudo Template::Tiny Config::Simple
13+
14+
- name: Check workflows
15+
shell: bash
16+
run: ./scripts/check_workflow_generation.sh $(pwd)

.github/workflows/comment-on-pr.yml

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -4,6 +4,8 @@ on:
44
repository_dispatch:
55
types: comment-pr
66

7+
concurrency: ${{ github.event.repository.name }}-${{ github.ref }}
8+
79
jobs:
810
comment-on-pr:
911
runs-on: ubuntu-latest

.github/workflows/macosx-clang-mpich.yml

Lines changed: 38 additions & 33 deletions
Original file line numberDiff line numberDiff line change
@@ -7,13 +7,18 @@ on:
77
- develop
88
- 1.*
99
pull_request:
10+
types: [opened, reopened, synchronize, converted_to_draft, ready_for_review]
1011

11-
jobs:
12+
concurrency:
13+
group: ${{ github.event.repository.name }}-${{ github.ref }}-${{ github.workflow }}
14+
cancel-in-progress: ${{ github.event_name == 'pull_request' }}
1215

16+
jobs:
1317
build:
14-
1518
runs-on: macos-10.15
1619

20+
if: github.event.pull_request.draft == false
21+
1722
strategy:
1823
fail-fast: false
1924

@@ -28,34 +33,34 @@ jobs:
2833
CMAKE_BUILD_PARALLEL_LEVEL: 4
2934

3035
steps:
31-
- uses: actions/checkout@v2
32-
- uses: actions/cache@v2
33-
with:
34-
path: ~/.ccache
35-
key: ${{ runner.os }}-macosx-clang-8-ccache-${{ secrets.GH_ACTIONS_CACHE_VERSION }}-${{ hashFiles('**/*') }}
36-
restore-keys: |
37-
${{ runner.os }}-macosx-clang-8-ccache-${{ secrets.GH_ACTIONS_CACHE_VERSION }}
38-
- uses: actions/cache@v2
39-
id: mpich-cache
40-
with:
41-
path: ~/.mpich
42-
key: ${{ runner.os }}-macosx-clang-8-mpich-${{ hashFiles('**/.github/workflows/macosx-clang-mpich.yml', '**/ci/deps/mpich.sh') }}
43-
- name: Install Dependencies
44-
shell: bash
45-
run: brew bundle --file=ci/Brewfile
46-
- name: Modify hosts file
47-
shell: bash
48-
run: echo "127.0.0.1 $(hostname)" | sudo tee -a /etc/hosts
49-
- name: Build mpich
50-
if: steps.mpich-cache.outputs.cache-hit != 'true'
51-
shell: bash
52-
run: |
53-
ci/deps/mpich.sh 3.3.2 -j4 $(grealpath ~/.mpich)
54-
- name: Build
55-
shell: bash
56-
run: |
57-
PATH=~/.mpich/bin:$PATH ci/build_cpp.sh $(pwd) $(pwd)/build
58-
- name: Test
59-
shell: bash
60-
run: |
61-
PATH=~/.mpich/bin:$PATH ci/test_cpp.sh $(pwd) $(pwd)/build
36+
- uses: actions/checkout@v2
37+
- uses: actions/cache@v2
38+
with:
39+
path: ~/.ccache
40+
key: ${{ runner.os }}-macosx-clang-8-ccache-${{ secrets.GH_ACTIONS_CACHE_VERSION }}-${{ hashFiles('**/*') }}
41+
restore-keys: |
42+
${{ runner.os }}-macosx-clang-8-ccache-${{ secrets.GH_ACTIONS_CACHE_VERSION }}
43+
- uses: actions/cache@v2
44+
id: mpich-cache
45+
with:
46+
path: ~/.mpich
47+
key: ${{ runner.os }}-macosx-clang-8-mpich-${{ hashFiles('**/.github/workflows/macosx-clang-mpich.yml', '**/ci/deps/mpich.sh') }}
48+
- name: Install Dependencies
49+
shell: bash
50+
run: brew bundle --file=ci/Brewfile
51+
- name: Modify hosts file
52+
shell: bash
53+
run: echo "127.0.0.1 $(hostname)" | sudo tee -a /etc/hosts
54+
- name: Build mpich
55+
if: steps.mpich-cache.outputs.cache-hit != 'true'
56+
shell: bash
57+
run: |
58+
ci/deps/mpich.sh 3.3.2 -j4 $(grealpath ~/.mpich)
59+
- name: Build
60+
shell: bash
61+
run: |
62+
PATH=~/.mpich/bin:$PATH ci/build_cpp.sh $(pwd) $(pwd)/build
63+
- name: Test
64+
shell: bash
65+
run: |
66+
PATH=~/.mpich/bin:$PATH ci/test_cpp.sh $(pwd) $(pwd)/build

ci/CTestConfig.cmake

Lines changed: 15 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,15 @@
1+
## This file should be placed in the root directory of your project.
2+
## Then modify the CMakeLists.txt file in the root directory of your
3+
## project to incorporate the testing dashboard.
4+
##
5+
## # The following are required to submit to the CDash dashboard:
6+
## ENABLE_TESTING()
7+
## INCLUDE(CTest)
8+
9+
set(CTEST_PROJECT_NAME "VT")
10+
set(CTEST_NIGHTLY_START_TIME "01:00:00 America/Denver")
11+
12+
set(CTEST_DROP_METHOD "https")
13+
set(CTEST_DROP_SITE "darma-cdash.sandia.gov")
14+
set(CTEST_DROP_LOCATION "/submit.php?project=VT")
15+
set(CTEST_DROP_SITE_CDASH TRUE)

ci/azure/azure-clang-10-ubuntu-mpich.yml

Lines changed: 4 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -11,9 +11,11 @@ trigger:
1111
- 1.0.0*
1212

1313
pr:
14+
drafts: false
15+
autoCancel: true
1416
branches:
15-
include:
16-
- '*'
17+
include:
18+
- '*'
1719

1820

1921
resources:

ci/azure/azure-clang-11-ubuntu-mpich.yml

Lines changed: 4 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -11,9 +11,11 @@ trigger:
1111
- 1.0.0*
1212

1313
pr:
14+
drafts: false
15+
autoCancel: true
1416
branches:
15-
include:
16-
- '*'
17+
include:
18+
- '*'
1719

1820

1921
resources:

ci/azure/azure-clang-12-ubuntu-mpich.yml

Lines changed: 4 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -11,9 +11,11 @@ trigger:
1111
- 1.0.0*
1212

1313
pr:
14+
drafts: false
15+
autoCancel: true
1416
branches:
15-
include:
16-
- '*'
17+
include:
18+
- '*'
1719

1820

1921
resources:

ci/azure/azure-clang-13-ubuntu-mpich.yml

Lines changed: 4 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -11,9 +11,11 @@ trigger:
1111
- 1.0.0*
1212

1313
pr:
14+
drafts: false
15+
autoCancel: true
1416
branches:
15-
include:
16-
- '*'
17+
include:
18+
- '*'
1719

1820

1921
resources:

ci/azure/azure-clang-14-ubuntu-mpich.yml

Lines changed: 4 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -11,9 +11,11 @@ trigger:
1111
- 1.0.0*
1212

1313
pr:
14+
drafts: false
15+
autoCancel: true
1416
branches:
15-
include:
16-
- '*'
17+
include:
18+
- '*'
1719

1820

1921
resources:

ci/azure/azure-clang-3.9-ubuntu-mpich.yml

Lines changed: 4 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -11,9 +11,11 @@ trigger:
1111
- 1.0.0*
1212

1313
pr:
14+
drafts: false
15+
autoCancel: true
1416
branches:
15-
include:
16-
- '*'
17+
include:
18+
- '*'
1719

1820

1921
resources:

0 commit comments

Comments
 (0)