Merge pull request #11882 from bwbarrett/release/v4.1.x-version #257
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: ompi_NVIDIA CI | |
on: [pull_request, push] | |
jobs: | |
deployment: | |
runs-on: [self-hosted, linux, x64, nvidia] | |
steps: | |
- name: Checkout | |
uses: actions/checkout@v3 | |
with: | |
submodules: recursive | |
- name: Checkout CI scripts | |
uses: actions/checkout@v3 | |
with: | |
repository: Mellanox/jenkins_scripts | |
path: ompi_ci | |
- name: Deployment infrastructure | |
run: /start deploy | |
build: | |
needs: [deployment] | |
runs-on: [self-hosted, linux, x64, nvidia] | |
steps: | |
- name: Building OMPI,UCX and tests | |
run: /start build | |
test: | |
needs: [deployment, build] | |
runs-on: [self-hosted, linux, x64, nvidia] | |
steps: | |
- name: Running tests | |
run: /start test | |
clean: | |
if: ${{ always() }} | |
needs: [deployment, build, test] | |
runs-on: [self-hosted, linux, x64, nvidia] | |
steps: | |
- name: Cleaning | |
run: /start clean |