Skip to content

Commit

Permalink
fix(ci): fix broken tests
Browse files Browse the repository at this point in the history
Fix the extensions test broken by #9135.
Also fix the cs-longhorn cron test.

Signed-off-by: Noel Georgi <git@frezbo.dev>
  • Loading branch information
frezbo committed Aug 27, 2024
1 parent a9551b7 commit 2d3bc94
Show file tree
Hide file tree
Showing 4 changed files with 14 additions and 3 deletions.
6 changes: 5 additions & 1 deletion .github/workflows/ci.yaml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
# THIS FILE WAS AUTOMATICALLY GENERATED, PLEASE DO NOT EDIT.
#
# Generated on 2024-08-24T17:38:15Z by kres 8e4bbb4.
# Generated on 2024-08-27T12:42:20Z by kres 8e4bbb4.

name: default
concurrency:
Expand Down Expand Up @@ -2623,6 +2623,10 @@ jobs:
if: github.event_name != 'schedule'
run: |
xargs -a _out/executable-artifacts -I {} chmod +x {}
- name: generate
if: github.event_name == 'schedule'
run: |
make generate
- name: build
if: github.event_name == 'schedule'
env:
Expand Down
6 changes: 5 additions & 1 deletion .github/workflows/integration-qemu-csi-longhorn-cron.yaml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
# THIS FILE WAS AUTOMATICALLY GENERATED, PLEASE DO NOT EDIT.
#
# Generated on 2024-08-24T17:38:15Z by kres 8e4bbb4.
# Generated on 2024-08-27T12:42:20Z by kres 8e4bbb4.

name: integration-qemu-csi-longhorn-cron
concurrency:
Expand Down Expand Up @@ -62,6 +62,10 @@ jobs:
if: github.event_name != 'schedule'
run: |
xargs -a _out/executable-artifacts -I {} chmod +x {}
- name: generate
if: github.event_name == 'schedule'
run: |
make generate
- name: build
if: github.event_name == 'schedule'
env:
Expand Down
3 changes: 3 additions & 0 deletions .kres.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -1237,6 +1237,9 @@ spec:
type: download
artifactName: talos-artifacts
artifactPath: _out
- name: generate
conditions:
- only-on-schedule
- name: build
conditions:
- only-on-schedule
Expand Down
2 changes: 1 addition & 1 deletion Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -226,7 +226,7 @@ COMMON_ARGS += --build-arg=MICROSOFT_SECUREBOOT_RELEASE=$(MICROSOFT_SECUREBOOT_R

CI_ARGS ?=

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

all: initramfs kernel installer imager talosctl talosctl-image talos

Expand Down

0 comments on commit 2d3bc94

Please sign in to comment.