Skip to content

Commit

Permalink
trilinos16 added
Browse files Browse the repository at this point in the history
  • Loading branch information
LutzGross committed Sep 30, 2024
1 parent 44ca198 commit 5ae6b1b
Show file tree
Hide file tree
Showing 1,024 changed files with 426,414 additions and 0 deletions.
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'
Original file line number Diff line number Diff line change
@@ -0,0 +1,2 @@
tribits_extpkg_define_dependencies( ParMETIS
DEPENDENCIES METIS)
5 changes: 5 additions & 0 deletions trilinos_source16/cmake/TPLs/FindTPLPortals.cmake
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
)
5 changes: 5 additions & 0 deletions trilinos_source16/cmake/TPLs/FindTPLgpcd.cmake
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"
)
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
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
Loading

0 comments on commit 5ae6b1b

Please sign in to comment.