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
2 changes: 1 addition & 1 deletion .github/workflows/conventional-pr-title-checker.yml
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@ on:

# cancel redundant builds
concurrency:
group: "title-checker-${{ github.head_ref }}"
group: "${{ github.workflow_ref }}-${{ github.head_ref }}"
cancel-in-progress: true

jobs:
Expand Down
11 changes: 10 additions & 1 deletion .github/workflows/per-pr.yml
Original file line number Diff line number Diff line change
Expand Up @@ -4,11 +4,12 @@ on:
pull_request:

concurrency:
group: "tests-${{ github.head_ref }}"
group: "${{ github.workflow_ref }}-${{ github.head_ref }}"
cancel-in-progress: true

jobs:
run_with_args:
name: Run kurtosis with arguments
strategy:
matrix:
file_name:
Expand All @@ -28,6 +29,7 @@ jobs:

# Make sure that `kurtosis run .` without an --args-file works fine (the defaults in input_parser.star are correct)
run_without_args:
name: Run kurtosis without arguments
runs-on: ubuntu-latest
steps:
- name: Checkout Repository
Expand All @@ -43,7 +45,13 @@ jobs:
- name: Run Starlark
run: kurtosis run ${{ github.workspace }} --verbosity detailed

run_k8s_test:
name: Run k8s tests
uses: ./.github/workflows/reusable-run-k8s.yml
secrets: inherit

lint:
name: Lint
runs-on: ubuntu-latest
steps:
- name: Checkout Repository
Expand All @@ -56,6 +64,7 @@ jobs:
run: kurtosis lint ${{ github.workspace }}

test:
name: Unit tests
runs-on: ubuntu-latest
steps:
- name: Checkout Repository
Expand Down
4 changes: 4 additions & 0 deletions .github/workflows/release-please.yml
Original file line number Diff line number Diff line change
Expand Up @@ -9,6 +9,10 @@ permissions:

name: release-please

concurrency:
group: ${{ github.workflow_ref }}
cancel-in-progress: false

jobs:
release-please:
runs-on: ubuntu-latest
Expand Down
Original file line number Diff line number Diff line change
@@ -1,14 +1,7 @@
name: Run k8s test

on:
pull_request:
workflow_dispatch:
schedule:
- cron: '0 2 * * *'

concurrency:
group: "scheduled-test"
cancel-in-progress: false
workflow_call:

jobs:
run_k8s_test:
Expand Down
15 changes: 15 additions & 0 deletions .github/workflows/scheduled-k8s.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,15 @@
name: Run k8s test

on:
schedule:
- cron: '0 2 * * *'

concurrency:
group: ${{ github.workflow_ref }}
cancel-in-progress: false

jobs:
run_k8s_test:
name: Run k8s tests
uses: ./.github/workflows/reusable-run-k8s.yml
secrets: inherit
Loading