Skip to content
Merged
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
11 changes: 10 additions & 1 deletion .github/workflows/ci.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -92,6 +92,7 @@ jobs:

docker-lint:
name: Dockerfile lint checks
if: github.repository_owner == 'quantumlib'
# ubuntu-slim runners don't have docker installed.
runs-on: ubuntu-24.04
timeout-minutes: 15
Expand All @@ -114,6 +115,7 @@ jobs:

shell-lint:
name: Shell script lint checks
if: github.repository_owner == 'quantumlib'
runs-on: ubuntu-slim
timeout-minutes: 15
steps:
Expand All @@ -136,6 +138,7 @@ jobs:

yaml-lint:
name: YAML lint checks
if: github.repository_owner == 'quantumlib'
runs-on: ubuntu-slim
timeout-minutes: 15
steps:
Expand All @@ -160,6 +163,7 @@ jobs:

bazel-lint:
name: Bazel build lint checks
if: github.repository_owner == 'quantumlib'
runs-on: ubuntu-slim
timeout-minutes: 15
steps:
Expand All @@ -183,6 +187,7 @@ jobs:

action-lint:
name: GitHub Actions lint checks
if: github.repository_owner == 'quantumlib'
runs-on: ubuntu-slim
timeout-minutes: 15
steps:
Expand All @@ -201,6 +206,7 @@ jobs:

library-tests:
name: Library tests
if: github.repository_owner == 'quantumlib'
needs:
- action-lint
- bazel-lint
Expand Down Expand Up @@ -297,6 +303,7 @@ jobs:

options-tests:
name: Options tests
if: github.repository_owner == 'quantumlib'
needs:
- action-lint
- bazel-lint
Expand Down Expand Up @@ -352,6 +359,7 @@ jobs:

memory-tests:
name: Malloc/asan/msan tests
if: github.repository_owner == 'quantumlib'
needs:
- action-lint
- bazel-lint
Expand Down Expand Up @@ -407,6 +415,7 @@ jobs:

docker-tests:
name: Docker build tests
if: github.repository_owner == 'quantumlib'
needs:
- action-lint
- docker-lint
Expand Down Expand Up @@ -448,7 +457,7 @@ jobs:

report-results:
name: CI
if: always()
if: always() && github.repository_owner == 'quantumlib'
needs:
- action-lint
- bazel-lint
Expand Down
1 change: 1 addition & 0 deletions .github/workflows/cirq_compatibility.yml
Original file line number Diff line number Diff line change
Expand Up @@ -35,6 +35,7 @@ concurrency:

jobs:
test-compatibility:
if: github.repository_owner == 'quantumlib'
name: Test Cirq compatibility
runs-on: ubuntu-24.04
timeout-minutes: 30
Expand Down
Loading