Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Debugging install test failures #2043

Closed
wants to merge 1 commit into from
Closed
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
38 changes: 1 addition & 37 deletions .github/workflows/build-and-test.yml
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down Expand Up @@ -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
1 change: 1 addition & 0 deletions CTestCustom.cmake.in
Original file line number Diff line number Diff line change
Expand Up @@ -22,4 +22,5 @@ list(APPEND CTEST_CUSTOM_COVERAGE_EXCLUDE

# Exclude flaky tests for now
list(APPEND CTEST_CUSTOM_TESTS_IGNORE
"^[^I]"
)
14 changes: 14 additions & 0 deletions scripts/ci/gh-actions/run.sh
Original file line number Diff line number Diff line change
Expand Up @@ -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************"
Expand Down