-
Notifications
You must be signed in to change notification settings - Fork 131
Combining cron-staging.yml and main.yml #1598
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Merged
wshanks
merged 7 commits into
qiskit-community:main
from
AbdullahKazi500:Qiskit-experiments-1
Sep 29, 2025
Merged
Changes from 1 commit
Commits
Show all changes
7 commits
Select commit
Hold shift + click to select a range
4d623f1
Create ci.yml
AbdullahKazi500 5ac6241
Update ci.yml
AbdullahKazi500 e11eed3
Update ci.yml
AbdullahKazi500 8725da3
Delete .github/workflows/main.yml
AbdullahKazi500 b9bb1bb
Delete .github/workflows/cron-staging.yml
AbdullahKazi500 6b5f72d
Update ci.yml
AbdullahKazi500 ff087cd
Update ci.yml
AbdullahKazi500 File filter
Filter by extension
Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
There are no files selected for viewing
This file contains hidden or 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,124 @@ | ||
name: CI | ||
|
||
on: | ||
pull_request: | ||
branches: [ main, 'stable/*' ] | ||
merge_group: | ||
branches: [ main ] | ||
schedule: | ||
- cron: "0 4 * * *" | ||
workflow_dispatch: | ||
|
||
concurrency: | ||
group: ${{ github.repository }}-${{ github.ref }}-${{ github.head_ref }} | ||
cancel-in-progress: true | ||
|
||
jobs: | ||
tests: | ||
if: github.repository_owner == 'Qiskit-Community' | ||
name: tests-python${{ matrix.python-version }}-${{ matrix.os }} | ||
runs-on: ${{ matrix.os }} | ||
strategy: | ||
matrix: | ||
python-version: [3.9, "3.13"] | ||
os: ["ubuntu-latest", "macos-latest", "windows-latest"] | ||
steps: | ||
- name: Print Concurrency Group | ||
env: | ||
CONCURRENCY_GROUP: ${{ github.repository }}-${{ github.ref }}-${{ github.head_ref }} | ||
run: | | ||
echo -e "\033[31;1;4mConcurrency Group\033[0m" | ||
echo -e "$CONCURRENCY_GROUP\n" | ||
shell: bash | ||
- uses: actions/checkout@v5 | ||
- name: Set up Python ${{ matrix.python-version }} | ||
uses: actions/setup-python@v6 | ||
with: | ||
python-version: ${{ matrix.python-version }} | ||
- name: Set up uv | ||
uses: astral-sh/setup-uv@v6 | ||
with: | ||
enable-cache: true | ||
cache-dependency-glob: | | ||
**/tox.ini | ||
**/pyproject.toml | ||
cache-suffix: tests | ||
- name: Stestr cache | ||
uses: actions/cache@v4 | ||
with: | ||
path: .stestr | ||
key: stestr-${{ runner.os }}-${{ matrix.python-version }} | ||
restore-keys: | | ||
stestr-${{ runner.os }}- | ||
stestr- | ||
- name: Install and Run Tests | ||
run: | | ||
if [[ "${{ github.event_name }}" == "schedule" ]]; then | ||
uvx --with tox-uv tox -e qiskit-main | ||
else | ||
uvx --with tox-uv tox --override testenv.package=external run -e py | ||
fi | ||
- name: Clean up stestr cache | ||
if: ${{ github.event_name != 'schedule' }} | ||
run: uvx --with tox-uv tox exec -epy -- stestr history remove all | ||
|
||
lint: | ||
if: github.repository_owner == 'Qiskit-Community' && github.event_name != 'schedule' | ||
name: lint | ||
runs-on: ubuntu-latest | ||
steps: | ||
- uses: actions/checkout@v5 | ||
- name: Set up Python 3.13 | ||
uses: actions/setup-python@v6 | ||
with: | ||
python-version: '3.13' | ||
- name: Set up uv | ||
uses: astral-sh/setup-uv@v6 | ||
with: | ||
enable-cache: true | ||
cache-dependency-glob: | | ||
**/tox.ini | ||
**/pyproject.toml | ||
cache-suffix: lint | ||
- name: Run lint | ||
run: uvx --with tox-uv tox run -elint | ||
|
||
docs: | ||
if: github.repository_owner == 'Qiskit-Community' | ||
name: docs | ||
runs-on: ubuntu-latest | ||
steps: | ||
- uses: actions/checkout@v5 | ||
with: | ||
fetch-depth: 0 | ||
- name: Set up Python ${{ github.event_name == 'schedule' && '3.12' || '3.13' }} | ||
wshanks marked this conversation as resolved.
Outdated
Show resolved
Hide resolved
|
||
uses: actions/setup-python@v6 | ||
with: | ||
python-version: ${{ github.event_name == 'schedule' && '3.12' || '3.13' }} | ||
- name: Set up uv | ||
uses: astral-sh/setup-uv@v6 | ||
with: | ||
enable-cache: true | ||
cache-dependency-glob: | | ||
**/tox.ini | ||
**/pyproject.toml | ||
cache-suffix: docs | ||
- name: Install Deps | ||
run: | | ||
sudo apt-get install -y pandoc graphviz | ||
- name: Build Docs | ||
run: | | ||
if [[ "${{ github.event_name }}" == "schedule" ]]; then | ||
uvx --with tox-uv tox -edocs-qiskit-main | ||
else | ||
uvx --with tox-uv tox run -edocs-parallel | ||
fi | ||
- name: Compress Artifacts | ||
run: | | ||
mkdir artifacts | ||
tar -Jcvf html_docs.tar.xz docs/_build/html | ||
mv html_docs.tar.xz artifacts/. | ||
- uses: actions/upload-artifact@v4 | ||
with: | ||
name: html_docs | ||
path: artifacts |
Oops, something went wrong.
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
Uh oh!
There was an error while loading. Please reload this page.