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
8 changes: 8 additions & 0 deletions .github/workflows/build.yml
Original file line number Diff line number Diff line change
Expand Up @@ -14,8 +14,13 @@ on:
permissions:
contents: read

concurrency:
group: build-${{ github.ref }}
cancel-in-progress: ${{ github.event_name == 'pull_request' }}

jobs:
schema-drift:
timeout-minutes: 10
name: Schema drift check
# Verifies the embedded internal/schema/ingest.v1.json matches
# tracebloc/data-ingestors' master. A green PR that silently
Expand All @@ -30,6 +35,7 @@ jobs:
run: ./scripts/sync-schema.sh --check

test:
timeout-minutes: 15
name: Test
runs-on: ubuntu-latest
steps:
Expand All @@ -52,6 +58,7 @@ jobs:
run: go test -race -cover ./...

lint:
timeout-minutes: 10
name: Lint
runs-on: ubuntu-latest
steps:
Expand Down Expand Up @@ -103,6 +110,7 @@ jobs:
misspell -error .
build:
timeout-minutes: 20
name: Build (${{ matrix.os }}/${{ matrix.arch }})
runs-on: ubuntu-latest
strategy:
Expand Down
5 changes: 5 additions & 0 deletions .github/workflows/e2e.yml
Original file line number Diff line number Diff line change
Expand Up @@ -21,8 +21,13 @@ on:
permissions:
contents: read

concurrency:
group: e2e-${{ github.ref }}
cancel-in-progress: ${{ github.event_name == 'pull_request' }}

jobs:
integration:
timeout-minutes: 30
name: Integration (kind)
runs-on: ubuntu-latest
# Skip on PRs that aren't explicitly opted in via the `e2e` label;
Expand Down
7 changes: 7 additions & 0 deletions .github/workflows/release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -44,8 +44,13 @@ permissions:
contents: write # create / update the GitHub Release
id-token: write # cosign keyless OIDC

concurrency:
group: release-${{ github.ref }}
cancel-in-progress: ${{ github.event_name == 'pull_request' }}

jobs:
release:
timeout-minutes: 20
name: Build + sign + publish
runs-on: ubuntu-latest
strategy:
Expand Down Expand Up @@ -158,6 +163,7 @@ jobs:
if-no-files-found: error

publish:
timeout-minutes: 20
name: Aggregate + create GitHub Release
runs-on: ubuntu-latest
needs: release
Expand Down Expand Up @@ -220,6 +226,7 @@ jobs:
# add a HOMEBREW_TAP_TOKEN repo secret with write access to
# tracebloc/homebrew-tap) when that repo exists.
bump-homebrew-tap:
timeout-minutes: 20
name: Bump Homebrew tap formula
runs-on: ubuntu-latest
needs: publish
Expand Down
Loading