Skip to content

Commit 1a39f9b

Browse files
committed
add 9.0.0 to test matrix
1 parent 82246da commit 1a39f9b

File tree

2 files changed

+3
-3
lines changed

2 files changed

+3
-3
lines changed

.github/workflows/test.yml

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -126,6 +126,7 @@ jobs:
126126
- '8.15.5'
127127
- '8.16.1'
128128
- '8.17.0'
129+
- '9.0.0'
129130
steps:
130131
- uses: actions/checkout@11bd71901bbe5b1630ceea73d27597364c9af683 # v4
131132
- uses: actions/setup-go@41dfa10bad2bb2ae585af6ee5bb4d7d973ad74ed # v5
@@ -155,7 +156,7 @@ jobs:
155156

156157
- id: setup-fleet
157158
name: Setup Fleet
158-
if: matrix.version == '8.10.3' || matrix.version == '8.11.4' || matrix.version == '8.12.2' || matrix.version == '8.13.4' || matrix.version == '8.14.3' || matrix.version == '8.15.5' || matrix.version == '8.16.1' || matrix.version == '8.17.0'
159+
if: matrix.version == '8.10.3' || matrix.version == '8.11.4' || matrix.version == '8.12.2' || matrix.version == '8.13.4' || matrix.version == '8.14.3' || matrix.version == '8.15.5' || matrix.version == '8.16.1' || matrix.version == '8.17.0' || matrix.version == '9.0.0'
159160
run: |-
160161
make setup-kibana-fleet
161162
env:
@@ -164,7 +165,7 @@ jobs:
164165

165166
- id: force-install-synthetics
166167
name: Force install synthetics
167-
if: matrix.version == '8.14.3' || matrix.version == '8.15.5' || matrix.version == '8.16.1' || matrix.version == '8.17.0'
168+
if: matrix.version == '8.14.3' || matrix.version == '8.15.5' || matrix.version == '8.16.1' || matrix.version == '8.17.0' || matrix.version == '9.0.0'
168169
run: |-
169170
for i in {1..5}; do curl -s -H "Authorization: ApiKey ${{ steps.get-api-key.outputs.apikey }}" --header "Content-Type: application/json" --header "kbn-xsrf: true" --request POST --data '{ "force": true }' http://localhost:5601/api/fleet/epm/packages/synthetics/1.2.2 && break || sleep 15; done
170171

generated/kbapi/Makefile

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,6 @@ SHELL := /bin/bash
33
ROOT_DIR := $(shell dirname $(realpath $(firstword $(MAKEFILE_LIST))))
44

55
github_ref := refs/heads/main
6-
# github_ref := refs/tags/8.17.0
76
oas_url := https://raw.githubusercontent.com/elastic/kibana/$(github_ref)/oas_docs/output/kibana.yaml
87

98
.PHONY: all

0 commit comments

Comments
 (0)