Skip to content

Commit 2d3bc94

Browse files
committed
fix(ci): fix broken tests
Fix the extensions test broken by #9135. Also fix the cs-longhorn cron test. Signed-off-by: Noel Georgi <[email protected]>
1 parent a9551b7 commit 2d3bc94

File tree

4 files changed

+14
-3
lines changed

4 files changed

+14
-3
lines changed

.github/workflows/ci.yaml

+5-1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
# THIS FILE WAS AUTOMATICALLY GENERATED, PLEASE DO NOT EDIT.
22
#
3-
# Generated on 2024-08-24T17:38:15Z by kres 8e4bbb4.
3+
# Generated on 2024-08-27T12:42:20Z by kres 8e4bbb4.
44

55
name: default
66
concurrency:
@@ -2623,6 +2623,10 @@ jobs:
26232623
if: github.event_name != 'schedule'
26242624
run: |
26252625
xargs -a _out/executable-artifacts -I {} chmod +x {}
2626+
- name: generate
2627+
if: github.event_name == 'schedule'
2628+
run: |
2629+
make generate
26262630
- name: build
26272631
if: github.event_name == 'schedule'
26282632
env:

.github/workflows/integration-qemu-csi-longhorn-cron.yaml

+5-1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
# THIS FILE WAS AUTOMATICALLY GENERATED, PLEASE DO NOT EDIT.
22
#
3-
# Generated on 2024-08-24T17:38:15Z by kres 8e4bbb4.
3+
# Generated on 2024-08-27T12:42:20Z by kres 8e4bbb4.
44

55
name: integration-qemu-csi-longhorn-cron
66
concurrency:
@@ -62,6 +62,10 @@ jobs:
6262
if: github.event_name != 'schedule'
6363
run: |
6464
xargs -a _out/executable-artifacts -I {} chmod +x {}
65+
- name: generate
66+
if: github.event_name == 'schedule'
67+
run: |
68+
make generate
6569
- name: build
6670
if: github.event_name == 'schedule'
6771
env:

.kres.yaml

+3
Original file line numberDiff line numberDiff line change
@@ -1237,6 +1237,9 @@ spec:
12371237
type: download
12381238
artifactName: talos-artifacts
12391239
artifactPath: _out
1240+
- name: generate
1241+
conditions:
1242+
- only-on-schedule
12401243
- name: build
12411244
conditions:
12421245
- only-on-schedule

Makefile

+1-1
Original file line numberDiff line numberDiff line change
@@ -226,7 +226,7 @@ COMMON_ARGS += --build-arg=MICROSOFT_SECUREBOOT_RELEASE=$(MICROSOFT_SECUREBOOT_R
226226

227227
CI_ARGS ?=
228228

229-
EXTENSIONS_FILTER_COMMAND ?= "grep -vE 'tailscale|xen-guest-agent|nvidia|vmtoolsd-guest-agent'"
229+
EXTENSIONS_FILTER_COMMAND ?= grep -vE 'tailscale|xen-guest-agent|nvidia|vmtoolsd-guest-agent'
230230

231231
all: initramfs kernel installer imager talosctl talosctl-image talos
232232

0 commit comments

Comments
 (0)