Skip to content

Commit

Permalink
Update MergeTestConfig1.yml
Browse files Browse the repository at this point in the history
  • Loading branch information
triple3567 authored Oct 12, 2023
1 parent 830dde0 commit cc1d0d6
Showing 1 changed file with 48 additions and 0 deletions.
48 changes: 48 additions & 0 deletions .github/workflows/MergeTestConfig1.yml
Original file line number Diff line number Diff line change
Expand Up @@ -12,6 +12,54 @@ on:
workflow_dispatch:

jobs:
triloamd01-gcc:
runs-on: [self-hosted, triloamd01]
container:
image: registry-ex.sandia.gov/evho/github-actions-trilinos-containers/gcc8.3.0
options: --shm-size=16g
steps:
- name: env
env:
GITHUB_CONTEXT: ${{ toJson(github) }}
run: |
env
- name: module list
shell: bash
run: |
bash -l -c "module list"
printenv PATH
- name: Cancel Previous Runs
uses: styfle/[email protected]
with:
access_token: ${{ github.token }}
- name: make dirs
working-directory: /
run: |
mkdir -p /home/Trilinos/src/Trilinos
mkdir -p /home/Trilinos/install
- name: clone trilinos
uses: actions/checkout@v3
with:
path: /__w/Trilinos/Trilinos/src/Trilinos
- name: move trilinos
working-directory: /__w/Trilinos/Trilinos/src/Trilinos
run: |
mv -f * /home/Trilinos/src/Trilinos
- name: configure trilinos
working-directory: /home/Trilinos/build/
run: |
bash -l -c "./configure.sh"
- name: CMakeCache.txt
if: always()
working-directory: /home/Trilinos/build/
run: |
bash -l -c "cat CMakeCache.txt"
- name: build trilinos
working-directory: /home/Trilinos/build/
run: bash -l -c "make -j8 && make install -j8"
- name: ctest
working-directory: /home/Trilinos/build/
run: bash -l -c "ctest -j2"
trilogpu01-gcc:
runs-on: [self-hosted, trilogpu01]
container:
Expand Down

0 comments on commit cc1d0d6

Please sign in to comment.