-
Notifications
You must be signed in to change notification settings - Fork 63
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 #416 from SCOREC/cws/simWorkflow
simmetrix workflow on self hosted runner
- Loading branch information
Showing
1 changed file
with
70 additions
and
0 deletions.
There are no files selected for viewing
70 changes: 70 additions & 0 deletions
70
.github/workflows/simmetrx_enabled_pr_comment_trigger_self_hosted
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,70 @@ | ||
name: simmetrx_enabled_pr_comment_trigger_self_hosted | ||
|
||
# Controls when the workflow will run | ||
on: | ||
issue_comment: | ||
types: [created] | ||
|
||
# Allows you to run this workflow manually from the Actions tab | ||
workflow_dispatch: | ||
|
||
jobs: | ||
build_and_test: | ||
permissions: | ||
issues: write | ||
contents: read | ||
pull-requests: write | ||
# The type of runner that the job will run on | ||
runs-on: self-hosted | ||
|
||
if: ${{ github.event.issue.pull_request }} | ||
steps: | ||
# Checks-out your repository under $GITHUB_WORKSPACE, so your job can access it | ||
- uses: actions/checkout@v4 | ||
with: | ||
submodules: recursive | ||
|
||
- name: build | ||
id: build | ||
if: contains(github.event.comment.body, '/runtests') && (github.event.comment.user.login == 'cwsmith') | ||
shell: bash | ||
run: | | ||
set +e #avoid exiting when lua modules return non-zero on 'warning' messages | ||
module use /opt/scorec/spack/rhel9/v0201_4/lmod/linux-rhel9-x86_64/Core/ | ||
module load gcc/12.3.0-iil3lno | ||
module load mpich/4.1.1-xpoyz4t | ||
module load simmetrix-simmodsuite/2024.0-240119dev-7abimo4 | ||
module load zoltan/3.83-hap4ggo | ||
module load cmake/3.26.3-2duxfcd | ||
set -e | ||
cmake -S ${{github.workspace}} \ | ||
-B ${{github.workspace}}/build \ | ||
-DCMAKE_CXX_COMPILER=mpicxx \ | ||
-DCMAKE_C_COMPILER=mpicc \ | ||
-DCMAKE_VERBOSE_MAKEFILE=ON \ | ||
-DENABLE_ZOLTAN=ON \ | ||
-DENABLE_SIMMETRIX=ON \ | ||
-DSIM_MPI=mpich4.1.1 \ | ||
-DSIM_PARASOLID=ON \ | ||
-DSIM_ACIS=ON \ | ||
-DSKIP_SIMMETRIX_VERSION_CHECK=ON \ | ||
-DMESHES=${{github.workspace}}/pumi-meshes \ | ||
-DIS_TESTING=ON \ | ||
-DSCOREC_CXX_WARNINGS=ON \ | ||
-DCMAKE_BUILD_TYPE=Release | ||
cmake --build ${{github.workspace}}/build -j | ||
ctest --test-dir ${{github.workspace}}/build --output-on-failure | ||
|
||
# from https://stackoverflow.com/a/64126737 | ||
- name: Post PR comment | ||
if: contains(github.event.comment.body, '/runtests') && (github.event.comment.user.login == 'cwsmith') | ||
uses: actions/[email protected] | ||
with: | ||
github-token: ${{ secrets.GITHUB_TOKEN }} | ||
script: | | ||
github.rest.issues.createComment({ | ||
issue_number: context.issue.number, | ||
owner: context.repo.owner, | ||
repo: context.repo.repo, | ||
body: 'Test Result: ${{ steps.build.outcome }} [(details)](https://github.com/${{github.repository}}/actions/runs/${{ github.run_id }})' | ||
}) |