From 260b944ceed768a5481a04c46e9f1c4779d7a95d Mon Sep 17 00:00:00 2001 From: Chuck Atkins Date: Tue, 17 Mar 2020 10:09:40 -0400 Subject: [PATCH] DEBUG --- .github/workflows/build-and-test.yml | 38 +--------------------------- CTestCustom.cmake.in | 1 + scripts/ci/gh-actions/run.sh | 14 ++++++++++ 3 files changed, 16 insertions(+), 37 deletions(-) diff --git a/.github/workflows/build-and-test.yml b/.github/workflows/build-and-test.yml index f654b99e57..0072fc3c2c 100644 --- a/.github/workflows/build-and-test.yml +++ b/.github/workflows/build-and-test.yml @@ -21,15 +21,7 @@ jobs: strategy: fail-fast: false matrix: - jobname: [ - el7, - el7-gnu8-ohpc, - el7-gnu8-openmpi-ohpc, - el7-gnu8-openmpi-ohpc-static, - el7-intel18-ohpc, - el7-intel18-openmpi-ohpc, - suse-pgi, - suse-pgi-openmpi ] + jobname: [ el7-gnu8-openmpi-ohpc-static ] include: - jobname: el7 container: ornladios/adios2:el7 @@ -62,31 +54,3 @@ jobs: run: scripts/ci/gh-actions/run.sh build - name: Test run: scripts/ci/gh-actions/run.sh test - - macos: - runs-on: macos-latest - env: - GH_YML_JOBNAME: ${{ matrix.jobname }} - GH_YML_OS: macOS - - strategy: - fail-fast: false - matrix: - jobname: [ - macos1015-xcode111-ninja, - macos1015-xcode111-openmpi-ninja ] - - steps: - - uses: actions/checkout@v2 - with: - ref: ${{ github.event.pull_request.head.sha }} - - name: Setup - run: scripts/ci/gh-actions/macos-setup.sh - - name: Update - run: scripts/ci/gh-actions/run.sh update - - name: Configure - run: scripts/ci/gh-actions/run.sh configure - - name: Build - run: scripts/ci/gh-actions/run.sh build - - name: Test - run: scripts/ci/gh-actions/run.sh test diff --git a/CTestCustom.cmake.in b/CTestCustom.cmake.in index e65c614747..b1d420772f 100644 --- a/CTestCustom.cmake.in +++ b/CTestCustom.cmake.in @@ -22,4 +22,5 @@ list(APPEND CTEST_CUSTOM_COVERAGE_EXCLUDE # Exclude flaky tests for now list(APPEND CTEST_CUSTOM_TESTS_IGNORE + "^[^I]" ) diff --git a/scripts/ci/gh-actions/run.sh b/scripts/ci/gh-actions/run.sh index b36106f5d7..04967fd152 100755 --- a/scripts/ci/gh-actions/run.sh +++ b/scripts/ci/gh-actions/run.sh @@ -60,6 +60,20 @@ then export OMPI_MCA_hwloc_base_binding_policy=none fi +echo "**********Mem Begin**********" +free +echo "**********Mem End************" + +echo "**********CPU Begin**********" +lscpu +echo "-----" +cat /proc/cpuinfo +echo "**********CPU End************" + +echo "**********Filesystem Begin**********" +df -h +echo "**********Filesystem End************" + echo "**********Env Begin**********" env | sort echo "**********Env End************"