Skip to content

Commit 3b10b0d

Browse files
authored
Merge pull request #2349 from DARMA-tasking/2347-release-vt-v150
#2347: Release vt v1.5.0
2 parents e0808dc + c8de16e commit 3b10b0d

File tree

1,275 files changed

+22855
-2971
lines changed

Some content is hidden

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

1,275 files changed

+22855
-2971
lines changed

.github/workflows/build-docs.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -30,6 +30,6 @@ jobs:
3030
TOKEN: ${{ secrets.GH_PAT }}
3131

3232
steps:
33-
- uses: actions/checkout@v3
33+
- uses: actions/checkout@v4
3434
- name: Build the Docker image
35-
run: docker-compose run ubuntu-docs
35+
run: docker compose run ubuntu-docs

.github/workflows/build-statistics.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@ jobs:
1212
runs-on: ubuntu-latest
1313

1414
steps:
15-
- uses: actions/checkout@v3
15+
- uses: actions/checkout@v4
1616

1717
- name: Generate build stats
1818
uses: DARMA-tasking/build-stats@master

.github/workflows/check-commit-format.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@ jobs:
77
name: Check commit
88
runs-on: ubuntu-latest
99
steps:
10-
- uses: actions/checkout@v3
10+
- uses: actions/checkout@v4
1111
with:
1212
fetch-depth: 0
1313
ref: ${{ github.event.pull_request.head.sha }}
Lines changed: 4 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
name: Check header guards
1+
name: Check header guards and license
22

33
on: pull_request
44

@@ -8,15 +8,12 @@ jobs:
88
steps:
99

1010
- name: Checkout source code
11-
uses: actions/checkout@v3
11+
uses: actions/checkout@v4
1212

1313
- name: Setup Dependencies
14-
uses: actions/setup-python@v2
14+
uses: actions/setup-python@v5
1515
with:
1616
python-version: '3.7'
1717

18-
- name: Install checkguard
19-
run: pip install guardonce
20-
21-
- name: Check that include guards are properly named
18+
- name: Check that for correct include guards and license
2219
run: ./scripts/check_guards.sh $(pwd)

.github/workflows/check-license.yml

Lines changed: 0 additions & 16 deletions
This file was deleted.

.github/workflows/check-trailing-whitespace.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@ jobs:
77
name: Find Trailing Whitespace
88
runs-on: ubuntu-latest
99
steps:
10-
- uses: actions/checkout@v3
10+
- uses: actions/checkout@v4
1111
- uses: DARMA-tasking/find-trailing-whitespace@master
1212
with:
1313
exclude: "sketches;lib"

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

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -32,14 +32,14 @@ jobs:
3232
CMAKE_BUILD_PARALLEL_LEVEL: 4
3333

3434
steps:
35-
- uses: actions/checkout@v3
36-
- uses: actions/cache@v3
35+
- uses: actions/checkout@v4
36+
- uses: actions/cache@v4
3737
with:
3838
path: ~/.ccache
3939
key: ${{ runner.os }}-macosx-clang-14-ccache-${{ secrets.GH_ACTIONS_CACHE_VERSION }}-${{ hashFiles('**/*') }}
4040
restore-keys: |
4141
${{ runner.os }}-macosx-clang-14-ccache-${{ secrets.GH_ACTIONS_CACHE_VERSION }}
42-
- uses: actions/cache@v3
42+
- uses: actions/cache@v4
4343
id: mpich-cache
4444
with:
4545
path: ~/.mpich

.github/workflows/pushdockerimage.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@ jobs:
1212
runs-on: ubuntu-latest
1313

1414
steps:
15-
- uses: actions/checkout@v3
15+
- uses: actions/checkout@v4
1616
- name: Docker Build & Push
1717
uses: jerray/publish-docker-action@master
1818
with:

.github/workflows/run-git-check.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@ jobs:
77
name: Run git check
88
runs-on: ubuntu-latest
99
steps:
10-
- uses: actions/checkout@v3
10+
- uses: actions/checkout@v4
1111
with:
1212
fetch-depth: 0
1313
ref: ${{ github.event.pull_request.head.sha }}

.gitignore

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -5,6 +5,7 @@ lib/*-build
55
lib/checkpoint
66
lib/googletest
77
lib/kokkos
8+
lib/vt-tv
89
.emacs.desktop
910
.clangd/
1011
.vscode/
@@ -21,6 +22,7 @@ compile_commands.json
2122
*.lo
2223
*.o
2324
*.obj
25+
*.pyc
2426

2527
# Precompiled Headers
2628
*.gch

0 commit comments

Comments
 (0)