mirror of
https://github.com/k3s-io/k3s.git
synced 2026-07-16 05:22:52 -04:00
Use 16 core cncf runners to build k3s
Add actionlint exception for CNCF runner names Signed-off-by: Derek Nola <derek.nola@suse.com>
This commit is contained in:
parent
b4122bb583
commit
c0427cac5d
4 changed files with 6 additions and 1 deletions
3
.github/actionlint.yaml
vendored
Normal file
3
.github/actionlint.yaml
vendored
Normal file
|
|
@ -0,0 +1,3 @@
|
|||
self-hosted-runner:
|
||||
labels:
|
||||
- cncf-ubuntu-*
|
||||
2
.github/workflows/build-k3s.yaml
vendored
2
.github/workflows/build-k3s.yaml
vendored
|
|
@ -26,7 +26,7 @@ permissions:
|
|||
jobs:
|
||||
build:
|
||||
name: Build # DO NOT CHANGE THIS NAME, we rely on it for INSTALL_K3S_PR functionality
|
||||
runs-on: ${{ contains(inputs.arch, 'arm') && 'ubuntu-24.04-arm' || 'ubuntu-24.04' }}
|
||||
runs-on: ${{ contains(inputs.arch, 'arm') && (github.repository_owner == 'k3s-io' && 'cncf-ubuntu-16-64-arm' || 'ubuntu-24.04-arm') || (github.repository_owner == 'k3s-io' && inputs.arch == 'amd64' && 'cncf-ubuntu-16-64-x86' || 'ubuntu-24.04') }}
|
||||
timeout-minutes: 20
|
||||
env:
|
||||
BIN_EXT: ${{ inputs.os == 'windows' && '.exe' || '' }}
|
||||
|
|
|
|||
1
.github/workflows/e2e.yaml
vendored
1
.github/workflows/e2e.yaml
vendored
|
|
@ -11,6 +11,7 @@ on:
|
|||
- ".github/**"
|
||||
- "!.github/actions/**"
|
||||
- "!.github/workflows/e2e.yaml"
|
||||
- "!.github/workflows/build-k3s.yaml"
|
||||
pull_request:
|
||||
paths-ignore:
|
||||
- "**.md"
|
||||
|
|
|
|||
1
.github/workflows/integration.yaml
vendored
1
.github/workflows/integration.yaml
vendored
|
|
@ -9,6 +9,7 @@ on:
|
|||
- "!tests/integration**"
|
||||
- ".github/**"
|
||||
- "!.github/workflows/integration.yaml"
|
||||
- "!.github/workflows/build-k3s.yaml"
|
||||
pull_request:
|
||||
paths-ignore:
|
||||
- "**.md"
|
||||
|
|
|
|||
Loading…
Reference in a new issue