Linux CI with MPI #272
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: "Linux CI with MPI" | |
on: | |
push: | |
branches: [ master, xacc-devel ] | |
pull_request: | |
branches: [ master ] | |
schedule: | |
# once every weekend | |
- cron: '0 3 * * 6' | |
jobs: | |
build: | |
runs-on: ubuntu-latest | |
name: "Linux CI" | |
steps: | |
- name: Checkout code | |
uses: actions/checkout@v3 | |
# Declares the repository safe and not under dubious ownership. | |
- name: Add repository to git safe directories | |
run: git config --global --add safe.directory $GITHUB_WORKSPACE | |
- name: Create Build Environment | |
run: cmake -E make_directory build | |
- name: Install dependencies | |
run: sudo apt-get -y update && sudo apt-get install -y --no-install-recommends ninja-build libssl-dev libcurl4-openssl-dev python3 libpython3-dev python3-pip libblas-dev liblapack-dev libopenmpi-dev | |
- name: Configure | |
working-directory: build/ | |
run: cmake -GNinja $GITHUB_WORKSPACE -DXACC_BUILD_TESTS=TRUE -DXACC_BUILD_EXAMPLES=TRUE -DXACC_ENABLE_MPI=TRUE | |
- name: Build | |
working-directory: build/ | |
run: cmake --build . --target install | |
- name: Test | |
working-directory: build/quantum/plugins/decorators/hpc-virtualization/tests | |
run: ctest -V |