From b050109c15dc12fe1154336e02508fa80e64b54a Mon Sep 17 00:00:00 2001 From: trilinos-cicd <141961590+trilinos-cicd@users.noreply.github.com> Date: Thu, 9 Nov 2023 12:28:21 -0700 Subject: [PATCH 01/31] Create PrTests.yaml --- .github/workflows/PrTests.yaml | 73 ++++++++++++++++++++++++++++++++++ 1 file changed, 73 insertions(+) create mode 100644 .github/workflows/PrTests.yaml diff --git a/.github/workflows/PrTests.yaml b/.github/workflows/PrTests.yaml new file mode 100644 index 000000000000..aeb4918910b6 --- /dev/null +++ b/.github/workflows/PrTests.yaml @@ -0,0 +1,73 @@ +ame: PR-gcc-openmpi + +on: + pull_request: + types: + - labeled + - opened + - synchronize + branches: + - master + - develop + workflow_dispatch: + +jobs: + triloamd01-gcc: + runs-on: [self-hosted, trilamd01] + container: + image: registry-ex.sandia.gov/trilinos-project/trilinos-containers/rhel8/trilinos-pr-env:gcc-8.5.0 + options: --hostname trilinos-container-gcc-8 + 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/build + - name: Clone trilinos + uses: actions/checkout@v4 + with: + fetch-depth: 0 + - name: Repo status + run: | + git fetch --all + pwd + ls -lhat + git status + git branch -vv + git branch -a + - name: get dependencies + working-directory: ./packages/framework + run: | + bash -l -c "./get_dependencies.sh --container" + - name: Generate PR cmake fragment + working-directory: /home/Trilinos/build + run: | + bash -l -c "source ${GITHUB_WORKSPACE}/packages/framework/GenConfig/gen-config.sh rhel8_gcc-openmpi_debug_shared_no-kokkos-arch_no-asan_complex_no-fpic_mpi_no-pt_no-rdc_no-uvm_deprecated-on_no-package-enables --cmake-fragment PR-configuration.cmake ${GITHUB_WORKSPACE}" + - name: Generate enable packages cmake fragment + working-directory: /home/Trilinos/build + run: | + bash -l -c "TRILINOS_DIR=${GITHUB_WORKSPACE} ${GITHUB_WORKSPACE}/commonTools/framework/get-changed-trilinos-packages.sh HEAD origin/develop package-enables.cmake ctest-labels.cmake" || bash -l -c "cat TribitsDumpDepsXmlScript.log" + - name: configure trilinos + working-directory: /home/Trilinos/build + run: | + bash -l -c "cmake -C PR-configuration.cmake -C package-enables.cmake ${GITHUB_WORKSPACE}" + - name: build trilinos + working-directory: /home/Trilinos/build + run: bash -l -c "ninja" + - name: ctest + working-directory: /home/Trilinos/build + run: bash -l -c "ctest -j36" From f649313b3b38794f2e209900fcbcfd800019c4a3 Mon Sep 17 00:00:00 2001 From: triple3567 Date: Thu, 9 Nov 2023 12:54:42 -0700 Subject: [PATCH 02/31] test --- test.txt | 0 1 file changed, 0 insertions(+), 0 deletions(-) create mode 100644 test.txt diff --git a/test.txt b/test.txt new file mode 100644 index 000000000000..e69de29bb2d1 From fcae605153eff1bcbe5b1075cb0bd4e11b13ac43 Mon Sep 17 00:00:00 2001 From: trilinos-cicd <141961590+trilinos-cicd@users.noreply.github.com> Date: Thu, 9 Nov 2023 12:55:50 -0700 Subject: [PATCH 03/31] Rename PrTests.yaml to PrTests.yml --- .github/workflows/{PrTests.yaml => PrTests.yml} | 0 1 file changed, 0 insertions(+), 0 deletions(-) rename .github/workflows/{PrTests.yaml => PrTests.yml} (100%) diff --git a/.github/workflows/PrTests.yaml b/.github/workflows/PrTests.yml similarity index 100% rename from .github/workflows/PrTests.yaml rename to .github/workflows/PrTests.yml From 2304faf2a1242432df4c6cf96ca120ba2bdca89e Mon Sep 17 00:00:00 2001 From: trilinos-cicd <141961590+trilinos-cicd@users.noreply.github.com> Date: Thu, 9 Nov 2023 12:57:10 -0700 Subject: [PATCH 04/31] Update PrTests.yml --- .github/workflows/PrTests.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/PrTests.yml b/.github/workflows/PrTests.yml index aeb4918910b6..4bfbfdbe4575 100644 --- a/.github/workflows/PrTests.yml +++ b/.github/workflows/PrTests.yml @@ -1,4 +1,4 @@ -ame: PR-gcc-openmpi +name: PR-gcc-openmpi on: pull_request: From 947bfa23ff0584f6c30b7f32f206c099429dcb33 Mon Sep 17 00:00:00 2001 From: trilinos-cicd <141961590+trilinos-cicd@users.noreply.github.com> Date: Thu, 9 Nov 2023 12:59:03 -0700 Subject: [PATCH 05/31] Update PrTests.yml --- .github/workflows/PrTests.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/PrTests.yml b/.github/workflows/PrTests.yml index 4bfbfdbe4575..7f64f54b3255 100644 --- a/.github/workflows/PrTests.yml +++ b/.github/workflows/PrTests.yml @@ -13,7 +13,7 @@ on: jobs: triloamd01-gcc: - runs-on: [self-hosted, trilamd01] + runs-on: [self-hosted, triloamd01] container: image: registry-ex.sandia.gov/trilinos-project/trilinos-containers/rhel8/trilinos-pr-env:gcc-8.5.0 options: --hostname trilinos-container-gcc-8 From 7605f50d990194a1d731b699e97a3ffc9ee69cc7 Mon Sep 17 00:00:00 2001 From: trilinos-cicd <141961590+trilinos-cicd@users.noreply.github.com> Date: Thu, 9 Nov 2023 13:00:42 -0700 Subject: [PATCH 06/31] Update PrTests.yml --- .github/workflows/PrTests.yml | 3 --- 1 file changed, 3 deletions(-) diff --git a/.github/workflows/PrTests.yml b/.github/workflows/PrTests.yml index 7f64f54b3255..7aab4ffb7a68 100644 --- a/.github/workflows/PrTests.yml +++ b/.github/workflows/PrTests.yml @@ -14,9 +14,6 @@ on: jobs: triloamd01-gcc: runs-on: [self-hosted, triloamd01] - container: - image: registry-ex.sandia.gov/trilinos-project/trilinos-containers/rhel8/trilinos-pr-env:gcc-8.5.0 - options: --hostname trilinos-container-gcc-8 steps: - name: env env: From 520e489fff7a6a6150a95eb943e9391b17c3211c Mon Sep 17 00:00:00 2001 From: triple3567 Date: Thu, 9 Nov 2023 15:55:21 -0700 Subject: [PATCH 07/31] f --- .github/test.txt | 0 1 file changed, 0 insertions(+), 0 deletions(-) create mode 100644 .github/test.txt diff --git a/.github/test.txt b/.github/test.txt new file mode 100644 index 000000000000..e69de29bb2d1 From b12648e56bc5f3697a730c81b289f3e691ffb8d0 Mon Sep 17 00:00:00 2001 From: trilinos-cicd <141961590+trilinos-cicd@users.noreply.github.com> Date: Thu, 9 Nov 2023 15:58:03 -0700 Subject: [PATCH 08/31] Update test.txt --- test.txt | 1 + 1 file changed, 1 insertion(+) diff --git a/test.txt b/test.txt index e69de29bb2d1..f33dfa25aa16 100644 --- a/test.txt +++ b/test.txt @@ -0,0 +1 @@ +1 From ee81a43657270cf5fc06810151b4058bdd9427fb Mon Sep 17 00:00:00 2001 From: triple3567 Date: Mon, 13 Nov 2023 15:34:12 -0700 Subject: [PATCH 09/31] dsf --- test.txt | 1 + 1 file changed, 1 insertion(+) diff --git a/test.txt b/test.txt index e69de29bb2d1..77c430a5acfb 100644 --- a/test.txt +++ b/test.txt @@ -0,0 +1 @@ +update \ No newline at end of file From c31a61287481bceea6126fe873d2e789afa4ebda Mon Sep 17 00:00:00 2001 From: triple3567 Date: Tue, 28 Nov 2023 10:27:13 -0700 Subject: [PATCH 10/31] pr test yaml changes --- .github/workflows/PrTests.yaml | 15 ++++++++------- 1 file changed, 8 insertions(+), 7 deletions(-) diff --git a/.github/workflows/PrTests.yaml b/.github/workflows/PrTests.yaml index aeb4918910b6..a2a3cf707ea8 100644 --- a/.github/workflows/PrTests.yaml +++ b/.github/workflows/PrTests.yaml @@ -35,12 +35,13 @@ jobs: - name: make dirs working-directory: / run: | - mkdir -p /home/Trilinos/src/Trilinos - mkdir -p /home/Trilinos/build + mkdir -p /home/runner/Trilinos/src/Trilinos + mkdir -p /home/runner/Trilinos/build - name: Clone trilinos uses: actions/checkout@v4 with: fetch-depth: 0 + path: /home/runner/Trilinos/src/Trilinos - name: Repo status run: | git fetch --all @@ -54,20 +55,20 @@ jobs: run: | bash -l -c "./get_dependencies.sh --container" - name: Generate PR cmake fragment - working-directory: /home/Trilinos/build + working-directory: /home/runner/Trilinos/build run: | bash -l -c "source ${GITHUB_WORKSPACE}/packages/framework/GenConfig/gen-config.sh rhel8_gcc-openmpi_debug_shared_no-kokkos-arch_no-asan_complex_no-fpic_mpi_no-pt_no-rdc_no-uvm_deprecated-on_no-package-enables --cmake-fragment PR-configuration.cmake ${GITHUB_WORKSPACE}" - name: Generate enable packages cmake fragment - working-directory: /home/Trilinos/build + working-directory: /home/runner/Trilinos/build run: | bash -l -c "TRILINOS_DIR=${GITHUB_WORKSPACE} ${GITHUB_WORKSPACE}/commonTools/framework/get-changed-trilinos-packages.sh HEAD origin/develop package-enables.cmake ctest-labels.cmake" || bash -l -c "cat TribitsDumpDepsXmlScript.log" - name: configure trilinos - working-directory: /home/Trilinos/build + working-directory: /home/runner/Trilinos/build run: | bash -l -c "cmake -C PR-configuration.cmake -C package-enables.cmake ${GITHUB_WORKSPACE}" - name: build trilinos - working-directory: /home/Trilinos/build + working-directory: /home/runner/Trilinos/build run: bash -l -c "ninja" - name: ctest - working-directory: /home/Trilinos/build + working-directory: /home/runner/Trilinos/build run: bash -l -c "ctest -j36" From 0883e1ef47456095fc22b2d3bf998989d7c9761a Mon Sep 17 00:00:00 2001 From: triple3567 Date: Tue, 28 Nov 2023 10:34:01 -0700 Subject: [PATCH 11/31] syntax fix --- .github/workflows/PrTests.yaml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/PrTests.yaml b/.github/workflows/PrTests.yaml index a2a3cf707ea8..b37aa521be49 100644 --- a/.github/workflows/PrTests.yaml +++ b/.github/workflows/PrTests.yaml @@ -1,4 +1,4 @@ -ame: PR-gcc-openmpi +name: PR-gcc-openmpi on: pull_request: From 8a44691fe628cb2c2f355298f38b6f79ea5e9662 Mon Sep 17 00:00:00 2001 From: triple3567 Date: Tue, 28 Nov 2023 10:45:12 -0700 Subject: [PATCH 12/31] dsf --- .github/workflows/PrTests.yml | 1 - 1 file changed, 1 deletion(-) diff --git a/.github/workflows/PrTests.yml b/.github/workflows/PrTests.yml index b01d3c6132db..cb9f14e83d45 100644 --- a/.github/workflows/PrTests.yml +++ b/.github/workflows/PrTests.yml @@ -38,7 +38,6 @@ jobs: uses: actions/checkout@v4 with: fetch-depth: 0 - path: /home/runner/Trilinos/src/Trilinos - name: Repo status run: | git fetch --all From ddfdcfc0288ef0bb2ea5bbb8dd9902961e5e999e Mon Sep 17 00:00:00 2001 From: triple3567 Date: Tue, 28 Nov 2023 10:59:10 -0700 Subject: [PATCH 13/31] sdf --- .github/workflows/PrTests.yml | 14 +++++++------- 1 file changed, 7 insertions(+), 7 deletions(-) diff --git a/.github/workflows/PrTests.yml b/.github/workflows/PrTests.yml index cb9f14e83d45..7aab4ffb7a68 100644 --- a/.github/workflows/PrTests.yml +++ b/.github/workflows/PrTests.yml @@ -32,8 +32,8 @@ jobs: - name: make dirs working-directory: / run: | - mkdir -p /home/runner/Trilinos/src/Trilinos - mkdir -p /home/runner/Trilinos/build + mkdir -p /home/Trilinos/src/Trilinos + mkdir -p /home/Trilinos/build - name: Clone trilinos uses: actions/checkout@v4 with: @@ -51,20 +51,20 @@ jobs: run: | bash -l -c "./get_dependencies.sh --container" - name: Generate PR cmake fragment - working-directory: /home/runner/Trilinos/build + working-directory: /home/Trilinos/build run: | bash -l -c "source ${GITHUB_WORKSPACE}/packages/framework/GenConfig/gen-config.sh rhel8_gcc-openmpi_debug_shared_no-kokkos-arch_no-asan_complex_no-fpic_mpi_no-pt_no-rdc_no-uvm_deprecated-on_no-package-enables --cmake-fragment PR-configuration.cmake ${GITHUB_WORKSPACE}" - name: Generate enable packages cmake fragment - working-directory: /home/runner/Trilinos/build + working-directory: /home/Trilinos/build run: | bash -l -c "TRILINOS_DIR=${GITHUB_WORKSPACE} ${GITHUB_WORKSPACE}/commonTools/framework/get-changed-trilinos-packages.sh HEAD origin/develop package-enables.cmake ctest-labels.cmake" || bash -l -c "cat TribitsDumpDepsXmlScript.log" - name: configure trilinos - working-directory: /home/runner/Trilinos/build + working-directory: /home/Trilinos/build run: | bash -l -c "cmake -C PR-configuration.cmake -C package-enables.cmake ${GITHUB_WORKSPACE}" - name: build trilinos - working-directory: /home/runner/Trilinos/build + working-directory: /home/Trilinos/build run: bash -l -c "ninja" - name: ctest - working-directory: /home/runner/Trilinos/build + working-directory: /home/Trilinos/build run: bash -l -c "ctest -j36" From d0499318ffb884460bbe0bb7346985107cdac80c Mon Sep 17 00:00:00 2001 From: trilinos-cicd <141961590+trilinos-cicd@users.noreply.github.com> Date: Thu, 30 Nov 2023 16:22:53 -0700 Subject: [PATCH 14/31] Delete test.txt --- test.txt | 1 - 1 file changed, 1 deletion(-) delete mode 100644 test.txt diff --git a/test.txt b/test.txt deleted file mode 100644 index 4ea5e4dd2666..000000000000 --- a/test.txt +++ /dev/null @@ -1 +0,0 @@ -update From 2b985e22220b912e23cd57c1f74a1711266f230d Mon Sep 17 00:00:00 2001 From: triple3567 Date: Thu, 30 Nov 2023 16:25:30 -0700 Subject: [PATCH 15/31] sdf --- .github/test.txt | 0 1 file changed, 0 insertions(+), 0 deletions(-) delete mode 100644 .github/test.txt diff --git a/.github/test.txt b/.github/test.txt deleted file mode 100644 index e69de29bb2d1..000000000000 From fa691c1f147db8c194e582c41b2edf3ffe7e38ba Mon Sep 17 00:00:00 2001 From: triple3567 Date: Fri, 1 Dec 2023 11:34:34 -0700 Subject: [PATCH 16/31] add force to disregard hostname --- .github/workflows/PrTests.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/PrTests.yml b/.github/workflows/PrTests.yml index 7aab4ffb7a68..93430809e230 100644 --- a/.github/workflows/PrTests.yml +++ b/.github/workflows/PrTests.yml @@ -53,7 +53,7 @@ jobs: - name: Generate PR cmake fragment working-directory: /home/Trilinos/build run: | - bash -l -c "source ${GITHUB_WORKSPACE}/packages/framework/GenConfig/gen-config.sh rhel8_gcc-openmpi_debug_shared_no-kokkos-arch_no-asan_complex_no-fpic_mpi_no-pt_no-rdc_no-uvm_deprecated-on_no-package-enables --cmake-fragment PR-configuration.cmake ${GITHUB_WORKSPACE}" + bash -l -c "source ${GITHUB_WORKSPACE}/packages/framework/GenConfig/gen-config.sh rhel8_gcc-openmpi_debug_shared_no-kokkos-arch_no-asan_complex_no-fpic_mpi_no-pt_no-rdc_no-uvm_deprecated-on_no-package-enables --force --cmake-fragment PR-configuration.cmake ${GITHUB_WORKSPACE}" - name: Generate enable packages cmake fragment working-directory: /home/Trilinos/build run: | From 81d119e037a1153b2dfd6594a841ab0cb2d0b828 Mon Sep 17 00:00:00 2001 From: triple3567 Date: Fri, 1 Dec 2023 11:57:39 -0700 Subject: [PATCH 17/31] remove --force. need to fix hostname issue --- .github/workflows/PrTests.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/PrTests.yml b/.github/workflows/PrTests.yml index 93430809e230..7aab4ffb7a68 100644 --- a/.github/workflows/PrTests.yml +++ b/.github/workflows/PrTests.yml @@ -53,7 +53,7 @@ jobs: - name: Generate PR cmake fragment working-directory: /home/Trilinos/build run: | - bash -l -c "source ${GITHUB_WORKSPACE}/packages/framework/GenConfig/gen-config.sh rhel8_gcc-openmpi_debug_shared_no-kokkos-arch_no-asan_complex_no-fpic_mpi_no-pt_no-rdc_no-uvm_deprecated-on_no-package-enables --force --cmake-fragment PR-configuration.cmake ${GITHUB_WORKSPACE}" + bash -l -c "source ${GITHUB_WORKSPACE}/packages/framework/GenConfig/gen-config.sh rhel8_gcc-openmpi_debug_shared_no-kokkos-arch_no-asan_complex_no-fpic_mpi_no-pt_no-rdc_no-uvm_deprecated-on_no-package-enables --cmake-fragment PR-configuration.cmake ${GITHUB_WORKSPACE}" - name: Generate enable packages cmake fragment working-directory: /home/Trilinos/build run: | From dc5fa57c7ddbc241b1a4f5a9e16b684dca6e481f Mon Sep 17 00:00:00 2001 From: triple3567 Date: Wed, 6 Dec 2023 15:05:40 -0700 Subject: [PATCH 18/31] add back force --- .github/workflows/PrTests.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/PrTests.yml b/.github/workflows/PrTests.yml index 7aab4ffb7a68..93430809e230 100644 --- a/.github/workflows/PrTests.yml +++ b/.github/workflows/PrTests.yml @@ -53,7 +53,7 @@ jobs: - name: Generate PR cmake fragment working-directory: /home/Trilinos/build run: | - bash -l -c "source ${GITHUB_WORKSPACE}/packages/framework/GenConfig/gen-config.sh rhel8_gcc-openmpi_debug_shared_no-kokkos-arch_no-asan_complex_no-fpic_mpi_no-pt_no-rdc_no-uvm_deprecated-on_no-package-enables --cmake-fragment PR-configuration.cmake ${GITHUB_WORKSPACE}" + bash -l -c "source ${GITHUB_WORKSPACE}/packages/framework/GenConfig/gen-config.sh rhel8_gcc-openmpi_debug_shared_no-kokkos-arch_no-asan_complex_no-fpic_mpi_no-pt_no-rdc_no-uvm_deprecated-on_no-package-enables --force --cmake-fragment PR-configuration.cmake ${GITHUB_WORKSPACE}" - name: Generate enable packages cmake fragment working-directory: /home/Trilinos/build run: | From 121614c86b5421940db8f67f4c0bb6cb9eefd840 Mon Sep 17 00:00:00 2001 From: trilinos-cicd <141961590+trilinos-cicd@users.noreply.github.com> Date: Fri, 12 Jan 2024 15:43:00 -0700 Subject: [PATCH 19/31] Update PrTests.yml --- .github/workflows/PrTests.yml | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/.github/workflows/PrTests.yml b/.github/workflows/PrTests.yml index 93430809e230..240a5390a970 100644 --- a/.github/workflows/PrTests.yml +++ b/.github/workflows/PrTests.yml @@ -3,9 +3,11 @@ name: PR-gcc-openmpi on: pull_request: types: - - labeled - opened - synchronize + pull_request_review: + types: + - edited branches: - master - develop From b4af158678e3b5d5775445eafe7d9f2b588dac7d Mon Sep 17 00:00:00 2001 From: triple3567 <51243385+triple3567@users.noreply.github.com> Date: Fri, 12 Jan 2024 15:53:15 -0700 Subject: [PATCH 20/31] Update PrTests.yml --- .github/workflows/PrTests.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/PrTests.yml b/.github/workflows/PrTests.yml index 240a5390a970..e78dc2001a6e 100644 --- a/.github/workflows/PrTests.yml +++ b/.github/workflows/PrTests.yml @@ -7,7 +7,7 @@ on: - synchronize pull_request_review: types: - - edited + - submitted branches: - master - develop From bb3506e03f598e8faa56d05a21780db45f44bc58 Mon Sep 17 00:00:00 2001 From: triple3567 <51243385+triple3567@users.noreply.github.com> Date: Fri, 12 Jan 2024 17:41:45 -0700 Subject: [PATCH 21/31] Update PrTests.yml --- .github/workflows/PrTests.yml | 1 + 1 file changed, 1 insertion(+) diff --git a/.github/workflows/PrTests.yml b/.github/workflows/PrTests.yml index e78dc2001a6e..1ddd39f60286 100644 --- a/.github/workflows/PrTests.yml +++ b/.github/workflows/PrTests.yml @@ -15,6 +15,7 @@ on: jobs: triloamd01-gcc: + if: github.event.review.state == 'APPROVED' runs-on: [self-hosted, triloamd01] steps: - name: env From 717539c639d3627e9d455f75995ea93d2b1df06c Mon Sep 17 00:00:00 2001 From: triple3567 <51243385+triple3567@users.noreply.github.com> Date: Mon, 15 Jan 2024 09:19:37 -0700 Subject: [PATCH 22/31] Update PrTests.yml --- .github/workflows/PrTests.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/PrTests.yml b/.github/workflows/PrTests.yml index 1ddd39f60286..0d89a0d924dc 100644 --- a/.github/workflows/PrTests.yml +++ b/.github/workflows/PrTests.yml @@ -15,7 +15,7 @@ on: jobs: triloamd01-gcc: - if: github.event.review.state == 'APPROVED' + if: ${{ github.event.action == 'synchronize' || github.event.action == 'opened' || github.event.review.state == 'APPROVED' }} runs-on: [self-hosted, triloamd01] steps: - name: env From 66c510a02abf02a5cfab74a2c8626e878c68d606 Mon Sep 17 00:00:00 2001 From: trilinos-cicd <141961590+trilinos-cicd@users.noreply.github.com> Date: Tue, 16 Jan 2024 14:05:47 -0700 Subject: [PATCH 23/31] Update PrTests.yml --- .github/workflows/PrTests.yml | 5 ++--- 1 file changed, 2 insertions(+), 3 deletions(-) diff --git a/.github/workflows/PrTests.yml b/.github/workflows/PrTests.yml index 0d89a0d924dc..94409aed658c 100644 --- a/.github/workflows/PrTests.yml +++ b/.github/workflows/PrTests.yml @@ -1,4 +1,4 @@ -name: PR-gcc-openmpi +name: pr-test-AT2 on: pull_request: @@ -15,9 +15,8 @@ on: jobs: triloamd01-gcc: - if: ${{ github.event.action == 'synchronize' || github.event.action == 'opened' || github.event.review.state == 'APPROVED' }} runs-on: [self-hosted, triloamd01] - steps: + if: ${{ github.event.action == 'synchronize' || github.event.action == 'opened' || github.event.review.state == 'APPROVED' }} - name: env env: GITHUB_CONTEXT: ${{ toJson(github) }} From b297f0fe183419ac536fc2efec529c2bad2e122b Mon Sep 17 00:00:00 2001 From: trilinos-cicd <141961590+trilinos-cicd@users.noreply.github.com> Date: Tue, 16 Jan 2024 14:07:30 -0700 Subject: [PATCH 24/31] Update PrTests.yml --- .github/workflows/PrTests.yml | 1 + 1 file changed, 1 insertion(+) diff --git a/.github/workflows/PrTests.yml b/.github/workflows/PrTests.yml index 94409aed658c..1aa7655bf76c 100644 --- a/.github/workflows/PrTests.yml +++ b/.github/workflows/PrTests.yml @@ -17,6 +17,7 @@ jobs: triloamd01-gcc: runs-on: [self-hosted, triloamd01] if: ${{ github.event.action == 'synchronize' || github.event.action == 'opened' || github.event.review.state == 'APPROVED' }} + steps: - name: env env: GITHUB_CONTEXT: ${{ toJson(github) }} From 316cb8a5a97c8b0f219674c69b6c0dcc31cf141b Mon Sep 17 00:00:00 2001 From: triple3567 <51243385+triple3567@users.noreply.github.com> Date: Wed, 7 Feb 2024 14:52:04 -0700 Subject: [PATCH 25/31] Create txt.txt --- txt.txt | 1 + 1 file changed, 1 insertion(+) create mode 100644 txt.txt diff --git a/txt.txt b/txt.txt new file mode 100644 index 000000000000..5c9a1f4e0f09 --- /dev/null +++ b/txt.txt @@ -0,0 +1 @@ +tmp.txt From aa5a6978700440afabae1fa589ff9c7b86692762 Mon Sep 17 00:00:00 2001 From: triple3567 <51243385+triple3567@users.noreply.github.com> Date: Wed, 7 Feb 2024 14:54:33 -0700 Subject: [PATCH 26/31] Update txt.txt --- txt.txt | 1 + 1 file changed, 1 insertion(+) diff --git a/txt.txt b/txt.txt index 5c9a1f4e0f09..af8c725e62e4 100644 --- a/txt.txt +++ b/txt.txt @@ -1 +1,2 @@ tmp.txt +dsaf From 7f815ba950c3db18877c4ec8ff1534d5201b7759 Mon Sep 17 00:00:00 2001 From: trilinos-cicd <141961590+trilinos-cicd@users.noreply.github.com> Date: Wed, 13 Mar 2024 10:25:30 -0600 Subject: [PATCH 27/31] Update txt.txt --- txt.txt | 1 + 1 file changed, 1 insertion(+) diff --git a/txt.txt b/txt.txt index af8c725e62e4..b822796d5213 100644 --- a/txt.txt +++ b/txt.txt @@ -1,2 +1,3 @@ tmp.txt dsaf +asdf From a35d12fe86a3b331f6cf80d3d0da1b85e97c2555 Mon Sep 17 00:00:00 2001 From: trilinos-cicd <141961590+trilinos-cicd@users.noreply.github.com> Date: Wed, 13 Mar 2024 10:26:24 -0600 Subject: [PATCH 28/31] Update txt.txt --- txt.txt | 1 + 1 file changed, 1 insertion(+) diff --git a/txt.txt b/txt.txt index b822796d5213..87611f4fc18b 100644 --- a/txt.txt +++ b/txt.txt @@ -1,3 +1,4 @@ tmp.txt dsaf asdf +saFAf From 07d18108688ca4cfefc3db3ba8267b657b84de98 Mon Sep 17 00:00:00 2001 From: trilinos-cicd <141961590+trilinos-cicd@users.noreply.github.com> Date: Wed, 13 Mar 2024 15:32:59 -0600 Subject: [PATCH 29/31] Update txt.txt --- txt.txt | 1 + 1 file changed, 1 insertion(+) diff --git a/txt.txt b/txt.txt index 87611f4fc18b..1d94b1a400dd 100644 --- a/txt.txt +++ b/txt.txt @@ -2,3 +2,4 @@ tmp.txt dsaf asdf saFAf +iAERjn'bdflk From 2fc02eba28400ade45b3ffbddf4ccc8dc69ef46b Mon Sep 17 00:00:00 2001 From: trilinos-cicd <141961590+trilinos-cicd@users.noreply.github.com> Date: Thu, 14 Mar 2024 10:04:08 -0600 Subject: [PATCH 30/31] Update txt.txt --- txt.txt | 1 + 1 file changed, 1 insertion(+) diff --git a/txt.txt b/txt.txt index 1d94b1a400dd..952ba17bff6a 100644 --- a/txt.txt +++ b/txt.txt @@ -3,3 +3,4 @@ dsaf asdf saFAf iAERjn'bdflk +461 From 442dce7b726c987d1f07b51ea2a20cd13a672f64 Mon Sep 17 00:00:00 2001 From: trilinos-cicd <141961590+trilinos-cicd@users.noreply.github.com> Date: Thu, 14 Mar 2024 10:05:59 -0600 Subject: [PATCH 31/31] Update txt.txt --- txt.txt | 1 + 1 file changed, 1 insertion(+) diff --git a/txt.txt b/txt.txt index 952ba17bff6a..0549e18e10a9 100644 --- a/txt.txt +++ b/txt.txt @@ -4,3 +4,4 @@ asdf saFAf iAERjn'bdflk 461 +626156