Skip to content

ci: sync upstream

ci: sync upstream #19

Workflow file for this run

# CodeCoverage result can be found at https://coveralls.io/github/HDFGroup/hermes
name: ubuntu 20.04
# Controls when the action will run. Triggers the workflow on push or pull request
# events but only for the master branch
on:
push:
branches: [ master ]
workflow_dispatch:
inputs:
debug_enabled:
description: 'Run the build with tmate debugging enabled'
required: false
default: false
env:
# Customize the CMake build type here (Release, Debug, RelWithDebInfo, etc.)
BUILD_TYPE: Debug
LOCAL: local
# A workflow run is made up of one or more jobs that can run sequentially or in parallel
jobs:
build:
# The type of runner that the job will run on
runs-on: ubuntu-20.04
# Steps represent a sequence of tasks that will be executed as part of the job
steps:
# Checks-out your repository under $GITHUB_WORKSPACE, so your job can access it
- name: Get Sources
uses: actions/checkout@v3
- name: Setup python
uses: actions/setup-python@v2
- name: Run cpplint
run: pip install cpplint==1.5.4 && bash ci/lint.sh `pwd`
# - name: Cache Spack packages
# uses: actions/cache@v2
# id: spack-cache
# with:
# path: ~/${{ env.LOCAL }}
# key: ${{ runner.os }}-${{ hashFiles('ci/**') }}
- name: Install APT Dependencies
run: |
sudo apt update
sudo apt-get install -y -q autoconf
sudo apt-get install -y -q automake
sudo apt-get install -y -q cpanminus
sudo apt-get install -y -q libtool
sudo apt-get install -y -q libtool-bin
sudo apt-get install -y -q mpich
sudo apt-get install -y -q lcov
sudo apt-get install -y -q zlib1g-dev
sudo apt-get install -y -q libsdl2-dev
sudo apt-get install -y -q diffutils
sudo apt-get install -y -q libdb-dev
sudo apt-get install -y -q libedit-dev
sudo apt-get install -y -q libgdbm-dev
sudo apt-get install -y -q libncurses6
sudo apt-get install -y -q libreadline-dev
sudo apt-get install -y -q libsigsegv-dev
sudo apt-get install -y -q libxml2-dev
sudo apt-get install -y -q openssl
sudo apt-get install -y -q pkgconf
sudo apt-get install -y -q xz-utils
- name: Build And Install Dependencies
# if: steps.spack-cache.outputs.cache-hit != 'true'
run: ci/install_deps_u20.sh
- name: Build and Test
run: ci/install_hermes.sh
- name: Install
run: pushd build && make install && popd
# Enable tmate debugging of manually-triggered workflows if the input option was provided
- name: Setup tmate session
uses: mxschmitt/action-tmate@v3
if: ${{ github.event_name == 'workflow_dispatch' && github.event.inputs.debug_enabled && (failure() || !failure()) }}
- name: Multi-node Test
run: pushd ci/cluster && ./multi_node_ci_test.sh