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
4 changes: 1 addition & 3 deletions .github/workflows/build-cache.yml
Original file line number Diff line number Diff line change
Expand Up @@ -6,9 +6,7 @@ name: Build Cache
on:
push:
branches:
- "**"
- "!dependabot/**"
- "!xgopilot/**"
- main
pull_request:
branches: ["**"]

Expand Down
4 changes: 1 addition & 3 deletions .github/workflows/doc-link-checker.yml
Original file line number Diff line number Diff line change
Expand Up @@ -3,9 +3,7 @@ name: Doc Link Checker
on:
push:
branches:
- "**"
- "!dependabot/**"
- "!xgopilot/**"
- main
paths:
- "README.md"
pull_request:
Expand Down
4 changes: 1 addition & 3 deletions .github/workflows/doc.yml
Original file line number Diff line number Diff line change
Expand Up @@ -3,9 +3,7 @@ name: Docs
on:
push:
branches:
- "**"
- "!dependabot/**"
- "!xgopilot/**"
- main
pull_request:
branches: ["**"]

Expand Down
4 changes: 1 addition & 3 deletions .github/workflows/fmt.yml
Original file line number Diff line number Diff line change
Expand Up @@ -3,9 +3,7 @@ name: Format Check
on:
push:
branches:
- "**"
- "!dependabot/**"
- "!xgopilot/**"
- main
pull_request:
branches: ["**"]

Expand Down
4 changes: 1 addition & 3 deletions .github/workflows/go.yml
Original file line number Diff line number Diff line change
Expand Up @@ -6,9 +6,7 @@ name: Go
on:
push:
branches:
- "**"
- "!dependabot/**"
- "!xgopilot/**"
- main
pull_request:
branches: ["**"]

Expand Down
6 changes: 2 additions & 4 deletions .github/workflows/llgo.yml
Original file line number Diff line number Diff line change
Expand Up @@ -6,9 +6,7 @@ name: LLGo
on:
push:
branches:
- "**"
- "!dependabot/**"
- "!xgopilot/**"
- main
pull_request:
branches: ["**"]

Expand Down Expand Up @@ -180,7 +178,7 @@ jobs:
test:
name: test (${{ matrix.lane }}, ${{ matrix.os }}, LLVM ${{ matrix.llvm }}, Go ${{ matrix.go }}, shard ${{ matrix.shard }})
continue-on-error: ${{ matrix.lane == 'compatibility' }}
timeout-minutes: 30
timeout-minutes: ${{ startsWith(matrix.os, 'macos') && 45 || 30 }}
strategy:
matrix:
# Keep compatibility and primary toolchains pinned to exact patches.
Expand Down
7 changes: 3 additions & 4 deletions .github/workflows/release-build.yml
Original file line number Diff line number Diff line change
Expand Up @@ -3,10 +3,9 @@ name: Release Build
on:
push:
branches:
- "**"
- "!dependabot/**"
- "!xgopilot/**"
tags: ["*"]
- main
tags:
- "*"
pull_request:
branches: ["**"]

Expand Down
4 changes: 1 addition & 3 deletions .github/workflows/stdlib-coverage.yml
Original file line number Diff line number Diff line change
Expand Up @@ -3,9 +3,7 @@ name: Stdlib Coverage
on:
push:
branches:
- "**"
- "!dependabot/**"
- "!xgopilot/**"
- main
pull_request:
branches: ["**"]

Expand Down
4 changes: 1 addition & 3 deletions .github/workflows/targets.yml
Original file line number Diff line number Diff line change
Expand Up @@ -3,9 +3,7 @@ name: Targets
on:
push:
branches:
- "**"
- "!dependabot/**"
- "!xgopilot/**"
- main
pull_request:
branches: ["**"]

Expand Down
Loading