DATA: Fix put tests #24
Workflow file for this run
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
name: CI | |
on: [push, pull_request] | |
env: | |
HPCX_PKG_NAME: hpcx-v2.5.0-gcc-MLNX_OFED_LINUX-4.7-1.0.0.1-ubuntu18.04-x86_64 | |
HPCX_PKG_LINK: http://www.mellanox.com/downloads/hpc/hpc-x/v2.5 | |
jobs: | |
build: | |
runs-on: ubuntu-latest | |
steps: | |
- name: Get HPCX | |
run: wget "${HPCX_PKG_LINK}/${HPCX_PKG_NAME}.tbz" -P /tmp | |
- name: Unpack HPCX | |
run: cd /tmp && tar xjf "${HPCX_PKG_NAME}.tbz" | |
- uses: actions/checkout@v1 | |
- name: Build | |
run: | | |
source /tmp/${HPCX_PKG_NAME}/hpcx-init.sh | |
hpcx_load | |
export SHMEM_HOME=$HPCX_MPI_DIR | |
export CC='' | |
cd verifier | |
./autogen.sh | |
./configure --prefix=$PWD/install | |
make -j`nproc` install |