Skip to content

add support for pulse waveform container op #818

add support for pulse waveform container op

add support for pulse waveform container op #818

Workflow file for this run

# (C) Copyright IBM 2023.
#
# This code is part of Qiskit.
#
# This code is licensed under the Apache License, Version 2.0 with LLVM
# Exceptions. You may obtain a copy of this license in the LICENSE.txt
# file in the root directory of this source tree.
#
# Any modifications or derivative works of this code must retain this
# copyright notice, and modified files need to carry a notice indicating
# that they have been altered from the originals.
name: Continuous Integration
on: [push, pull_request]
jobs:
Build:
runs-on: ubuntu-latest
env:
CONAN_USER_HOME: ${{ github.workspace }}
steps:
- uses: actions/checkout@v3
with:
fetch-depth: 0
# -- REMOVE ONCE OPEN SOURCE
# Needed until Qiskit/qss-qasm is public.
- uses: webfactory/[email protected]
with:
ssh-private-key: ${{ secrets.SSH_PRIVATE_KEY }}
- name: Set up Python
uses: actions/setup-python@v4
with:
python-version: '3.10.9'
- name: Install pip packages
run: |
python -m pip install --upgrade pip
pip install -r requirements-dev.txt
- name: Export QSSC_VERSION from Git version tag
run: |
version=`python -c "from setuptools_scm import get_version; print(get_version())"`
echo "QSSC_VERSION=$version" >> $GITHUB_ENV
- name: Try load Conan cache
id: cache
uses: actions/cache/restore@v3
with:
path: .conan
key: conan-${{ runner.os }}-${{ hashFiles('conandata.yml', 'conanfile.py', 'conan/**/*.py', 'conan/**/*.yml') }}
restore-keys: conan-${{ runner.os }}
- name : Print cache hit/miss
run: |
echo "Cache was hit: ${{ steps.cache.outputs.cache-hit }}"
# If we have a cache miss on 'main', clear the cache.
# A dependency was updated, so we need to drop the old one
# to prevent unbounded cache growth over time.
- name : Clear Conan cache
if: github.event_name == 'push' && github.ref == 'refs/heads/main' && steps.cache.outputs.cache-hit != 'true'
run: |
rm -rf ./.conan
- name: Create Conan default profile
run: |
conan profile new default --detect || true
conan profile update settings.compiler.libcxx=libstdc++11 default
- name: Add QASM, LLVM, and clang tools recipes to Conan cache.
run: ./conan_deps.sh
- name: Create build dir
run: mkdir build
- name: Conan install
id: conan_install
working-directory: build
run: |
export CONAN_LLVM_GIT_CACHE="${{ runner.temp }}/llvm-project"
conan install .. --build=outdated -pr:h default -pr:b default
- name: Build
id: build
working-directory: build
run: |
conan build ..
- name: Test
id: test
working-directory: build
run: conan build .. --test
# On 'pull_request' run Clang tidy
- name: Clang tidy
uses: ZedThree/[email protected]
id: clang_tidy
if: github.event_name == 'pull_request'
with:
config_file: '.clang-tidy'
build_dir: build
# On 'pull_request' run Clang format and commit the changes
- name: Clang format
id: clang_format
if: github.event_name == 'pull_request'
working-directory: build
run: ninja check-format
# On 'main' branch, always save the cache if Conan install succeeded.
# Note: we only update the cache from 'main' to avoid "cache thrashing", which would result in the 'main'
# cache getting LRU-evicted for every PR, since a single run uses most of the 10GB repo limit.
- uses: actions/cache/save@v3
if: always() && (github.event_name == 'push' && github.ref == 'refs/heads/main' && steps.conan_install.outcome == 'success' && steps.cache.outputs.cache-hit != 'true')
with:
path: .conan
key: conan-${{ runner.os }}-${{ hashFiles('conandata.yml', 'conanfile.py', 'conan/**/*.py', 'conan/**/*.yml') }}