-
Notifications
You must be signed in to change notification settings - Fork 13
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
1,024 changed files
with
426,414 additions
and
0 deletions.
There are no files selected for viewing
54 changes: 54 additions & 0 deletions
54
trilinos_source16/.github/workflows/tpetra_muelu_label_to_project.yml
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,54 @@ | ||
name: Auto assign MueLu or Tpetra labeled or titled issues to MueLu or Tpetra Projects | ||
|
||
on: | ||
issues: | ||
types: [opened, labeled] | ||
|
||
env: | ||
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} | ||
|
||
permissions: | ||
contents: read | ||
|
||
jobs: | ||
assign_one_project: | ||
permissions: | ||
issues: write # for actions/github-script@60a0d83039c74a4aee543508d2ffcb1c3799cdea # v7.0.1 | ||
repository-projects: write # for srggrs/assign-one-project-github-action to assign issues and PRs to repo project | ||
name: Assign to MueLu or Tpetra Project | ||
runs-on: ubuntu-latest | ||
steps: | ||
- name: Add MueLu Label | ||
uses: actions/github-script@60a0d83039c74a4aee543508d2ffcb1c3799cdea # v7.0.1 | ||
if: contains(github.event.issue.title, 'MueLu') | ||
with: | ||
script: | | ||
github.rest.issues.addLabels({ | ||
issue_number: context.issue.number, | ||
owner: context.repo.owner, | ||
repo: context.repo.repo, | ||
labels: ["pkg: MueLu"] | ||
}) | ||
- name: Add Tpetra Label | ||
uses: actions/github-script@60a0d83039c74a4aee543508d2ffcb1c3799cdea # v7.0.1 | ||
if: contains(github.event.issue.title, 'Tpetra') | ||
with: | ||
script: | | ||
github.rest.issues.addLabels({ | ||
issue_number: context.issue.number, | ||
owner: context.repo.owner, | ||
repo: context.repo.repo, | ||
labels: ["pkg: Tpetra"] | ||
}) | ||
- name: Add to MueLu Project | ||
uses: srggrs/assign-one-project-github-action@65a8ddab497df42ef268001e67bbf976f8fd39e1 # 1.3.1 | ||
if: contains(github.event.label.name, 'MueLu') || contains(github.event.issue.title, 'MueLu') | ||
with: | ||
project: 'https://github.com/trilinos/Trilinos/projects/5' | ||
column_name: 'Backlog' | ||
- name: Add to Tpetra Project | ||
uses: srggrs/assign-one-project-github-action@65a8ddab497df42ef268001e67bbf976f8fd39e1 # 1.3.1 | ||
if: contains(github.event.label.name, 'Tpetra') || contains(github.event.issue.title, 'Tpetra') | ||
with: | ||
project: 'https://github.com/trilinos/Trilinos/projects/2' | ||
column_name: 'Needs Triage' |
2 changes: 2 additions & 0 deletions
2
trilinos_source16/cmake/TPLs/FindTPLParMETISDependencies.cmake
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,2 @@ | ||
tribits_extpkg_define_dependencies( ParMETIS | ||
DEPENDENCIES METIS) |
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,5 @@ | ||
|
||
TRIBITS_TPL_FIND_INCLUDE_DIRS_AND_LIBRARIES( Portals | ||
REQUIRED_HEADERS portals3.h | ||
REQUIRED_LIBS_NAMES p3api p3lib p3rt p3utcp | ||
) |
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,5 @@ | ||
|
||
TRIBITS_TPL_FIND_INCLUDE_DIRS_AND_LIBRARIES( gpcd | ||
REQUIRED_HEADERS gpcd_lib.h | ||
REQUIRED_LIBS_NAMES "gpcd" | ||
) |
6 changes: 6 additions & 0 deletions
6
...s/atdm/ats1/drivers/Trilinos-atdm-ats1-hsw_intel-19.0.4_mpich-7.7.15_openmp_static_opt.sh
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,6 @@ | ||
#!/bin/bash | ||
if [ "${Trilinos_TRACK}" == "" ] ; then | ||
export Trilinos_TRACK=SparcATDM | ||
fi | ||
export Trilinos_SKIP_CTEST_ADD_TEST=FALSE | ||
$WORKSPACE/Trilinos/cmake/ctest/drivers/atdm/ats1/local-driver.sh |
5 changes: 5 additions & 0 deletions
5
.../atdm/ats2/drivers/Trilinos-atdm-ats2-cuda-10.1.243-gnu-7.3.1-spmpi-rolling_static_opt.sh
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,5 @@ | ||
#!/bin/bash | ||
if [ "${Trilinos_TRACK}" == "" ] ; then | ||
export Trilinos_TRACK=PrimaryATDM | ||
fi | ||
$WORKSPACE/Trilinos/cmake/ctest/drivers/atdm/ats2/local-driver.sh |
Oops, something went wrong.