From cc1d0d6c5b595c0513e24834c15cad8b2a362aab Mon Sep 17 00:00:00 2001 From: triple3567 <51243385+triple3567@users.noreply.github.com> Date: Thu, 12 Oct 2023 12:16:42 -0600 Subject: [PATCH] Update MergeTestConfig1.yml --- .github/workflows/MergeTestConfig1.yml | 48 ++++++++++++++++++++++++++ 1 file changed, 48 insertions(+) diff --git a/.github/workflows/MergeTestConfig1.yml b/.github/workflows/MergeTestConfig1.yml index 320ae0da52fe..bf1e32d8fafe 100644 --- a/.github/workflows/MergeTestConfig1.yml +++ b/.github/workflows/MergeTestConfig1.yml @@ -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/cancel-workflow-action@0.11.0 + 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: