-
Notifications
You must be signed in to change notification settings - Fork 572
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge Pull Request #12966 from trilinos/Trilinos/master_merge_2024042…
…6_175835 Automatically Merged using Trilinos Master Merge AutoTester PR Title: b'Trilinos Master Merge PR Generator: Auto PR created to promote from master_merge_20240426_175835 branch to master' PR Author: trilinos-autotester
- Loading branch information
Showing
38 changed files
with
1,358 additions
and
76 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
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -32,7 +32,7 @@ jobs: | |
bash -l -c "module list" | ||
printenv PATH | ||
- name: Cancel Previous Runs | ||
uses: styfle/[email protected] | ||
uses: styfle/cancel-workflow-action@85880fa0301c86cca9da44039ee3bb12d3bedbfa # 0.12.1 | ||
with: | ||
access_token: ${{ github.token }} | ||
- name: make dirs | ||
|
@@ -41,7 +41,7 @@ jobs: | |
mkdir -p /home/Trilinos/src/Trilinos | ||
mkdir -p /home/Trilinos/build | ||
- name: Clone trilinos | ||
uses: actions/[email protected].2 | ||
uses: actions/checkout@1d96c772d19495a3b5c517cd2bc0cb401ea0529f # v4.1.3 | ||
with: | ||
fetch-depth: 0 | ||
- name: Repo status | ||
|
@@ -90,7 +90,7 @@ jobs: | |
bash -l -c "module list" | ||
printenv PATH | ||
- name: Cancel Previous Runs | ||
uses: styfle/[email protected] | ||
uses: styfle/cancel-workflow-action@85880fa0301c86cca9da44039ee3bb12d3bedbfa # 0.12.1 | ||
with: | ||
access_token: ${{ github.token }} | ||
- name: make dirs | ||
|
@@ -99,7 +99,7 @@ jobs: | |
mkdir -p /home/Trilinos/src/Trilinos | ||
mkdir -p /home/Trilinos/build | ||
- name: Clone trilinos | ||
uses: actions/[email protected].2 | ||
uses: actions/checkout@1d96c772d19495a3b5c517cd2bc0cb401ea0529f # v4.1.3 | ||
with: | ||
fetch-depth: 0 | ||
- name: Repo status | ||
|
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
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,9 @@ | ||
# Security Policy | ||
|
||
## Supported Versions | ||
|
||
The latest released version of Trilinos is the only version supported with security updates. You can find that at: https://github.com/trilinos/Trilinos/releases. | ||
|
||
## Reporting a Vulnerability | ||
|
||
For run-of-the mill memory errors, etc., please file a Github issue. For specific, sensitive security issues, please click on "Report a vulnerability" at https://github.com/trilinos/Trilinos/security. |
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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,23 @@ | ||
TRIBITS_INCLUDE_DIRECTORIES(${CMAKE_CURRENT_SOURCE_DIR}) | ||
|
||
SET(SIERRA_GRAD_PROJECTION_SOURCES | ||
SierraGradProjection.cpp | ||
) | ||
|
||
TRIBITS_ADD_EXECUTABLE( | ||
SierraGradProjection | ||
SOURCES ${SIERRA_GRAD_PROJECTION_SOURCES} | ||
CATEGORIES BASIC PERFORMANCE | ||
) | ||
|
||
# Performance test representing gradient projection as used in Sierra | ||
TRIBITS_ADD_TEST( | ||
SierraGradProjection | ||
NAME "SierraGradProjection" | ||
ARGS "" | ||
COMM mpi | ||
NUM_MPI_PROCS 1 | ||
CATEGORIES PERFORMANCE | ||
RUN_SERIAL | ||
) | ||
|
Oops, something went wrong.