Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion .github/workflows/ci.yml
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
name: CI
name: Test

on:
push:
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/main-failure-report.yml
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@ name: Main failure report

on:
workflow_run:
workflows: [CI, Wheels]
workflows: [Test, Wheels]
types: [completed]

permissions:
Expand Down
10 changes: 6 additions & 4 deletions .github/workflows/nightly.yml
Original file line number Diff line number Diff line change
@@ -1,23 +1,25 @@
name: Nightly

# The full test matrix on a schedule; pr-nightly.yml also runs it on
# PRs labeled test-nightly.
# The full test matrix on a schedule; applying the test-nightly label
# runs it on a PR (re-apply the label for a fresh run).

on:
schedule:
- cron: '30 2 * * *'
workflow_dispatch:
workflow_call:
pull_request:
types: [labeled]

permissions:
contents: read

concurrency:
group: nightly-${{ github.workflow }}
group: nightly-${{ github.workflow }}-${{ github.event.pull_request.number || github.ref }}
cancel-in-progress: true

jobs:
build-test:
if: ${{ github.event_name != 'pull_request' || contains(github.event.pull_request.labels.*.name, 'test-nightly') }}
name: ${{ matrix.os }}/llvm${{ matrix.llvm }}/py${{ matrix.py }}/c++${{ matrix.cxx }}${{ matrix.vg && '/vg' || '' }}${{ matrix.flavor == 'cling' && '/cling' || '' }}
strategy:
fail-fast: false
Expand Down
20 changes: 0 additions & 20 deletions .github/workflows/pr-nightly.yml

This file was deleted.

8 changes: 4 additions & 4 deletions .github/workflows/wheels.yml
Original file line number Diff line number Diff line change
Expand Up @@ -30,10 +30,10 @@ concurrency:

jobs:
wheels:
name: wheels ${{ matrix.label }}
# A labeled event re-runs the workflow only for build-wheels itself;
# jobs without a needs edge to this one repeat the guard by alias.
if: &label-guard ${{ github.event.action != 'labeled' || github.event.label.name == 'build-wheels' }}
name: ${{ matrix.label }}
# Label events run only when the PR carries build-wheels, whichever
# label fired; jobs without a needs edge repeat the guard by alias.
if: &label-guard ${{ github.event.action != 'labeled' || contains(github.event.pull_request.labels.*.name, 'build-wheels') }}
strategy:
fail-fast: false
matrix:
Expand Down
Loading