Skip to content

Commit 862daf8

Browse files
committed
Try and pinpoint the issue
1 parent 970ab25 commit 862daf8

File tree

2 files changed

+20
-4
lines changed

2 files changed

+20
-4
lines changed

.github/workflows/build-and-test.yml

Lines changed: 4 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -351,7 +351,9 @@ jobs:
351351
- exporter-1
352352
- exporter-2
353353
- exporter-3
354-
- extension
354+
- extension-0
355+
- extension-1
356+
- extension-2
355357
- connector
356358
- internal
357359
- pkg
@@ -380,7 +382,7 @@ jobs:
380382

381383
integration-tests:
382384
if: ${{ github.actor != 'dependabot[bot]' && always() }}
383-
runs-on: ubuntu-24.04
385+
runs-on: ubuntu-latest
384386
needs: [setup-environment, integration-tests-matrix]
385387
steps:
386388
- name: Print result

Makefile

Lines changed: 16 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -42,7 +42,10 @@ EXPORTER_MODS_1 := $(shell find ./exporter/[d-i]* $(FIND_MOD_ARGS) -exec $(TO_MO
4242
EXPORTER_MODS_2 := $(shell find ./exporter/[k-o]* $(FIND_MOD_ARGS) -exec $(TO_MOD_DIR) )
4343
EXPORTER_MODS_3 := $(shell find ./exporter/[p-z]* $(FIND_MOD_ARGS) -exec $(TO_MOD_DIR) )
4444
EXPORTER_MODS := $(EXPORTER_MODS_0) $(EXPORTER_MODS_1) $(EXPORTER_MODS_2) $(EXPORTER_MODS_3)
45-
EXTENSION_MODS := $(shell find ./extension/* $(FIND_MOD_ARGS) -exec $(TO_MOD_DIR) )
45+
EXTENSION_MODS_0 := $(shell find ./exporter/[a-d]* $(FIND_MOD_ARGS) -exec $(TO_MOD_DIR) )
46+
EXTENSION_MODS_1 := $(shell find ./exporter/[e]* $(FIND_MOD_ARGS) -exec $(TO_MOD_DIR) )
47+
EXTENSION_MODS_2 := $(shell find ./exporter/[f-z]* $(FIND_MOD_ARGS) -exec $(TO_MOD_DIR) )
48+
EXTENSION_MODS := $(EXPORTER_MODS_0) $(EXPORTER_MODS_1) $(EXPORTER_MODS_2)
4649
CONNECTOR_MODS := $(shell find ./connector/* $(FIND_MOD_ARGS) -exec $(TO_MOD_DIR) )
4750
INTERNAL_MODS := $(shell find ./internal/* $(FIND_MOD_ARGS) -exec $(TO_MOD_DIR) )
4851
PKG_MODS := $(shell find ./pkg/* $(FIND_MOD_ARGS) -exec $(TO_MOD_DIR) )
@@ -78,7 +81,9 @@ all-groups:
7881
@echo "\nexporter-1: $(EXPORTER_MODS_1)"
7982
@echo "\nexporter-2: $(EXPORTER_MODS_2)"
8083
@echo "\nexporter-3: $(EXPORTER_MODS_3)"
81-
@echo "\nextension: $(EXTENSION_MODS)"
84+
@echo "\nextension-0: $(EXTENSION_MODS_0)"
85+
@echo "\nextension-1: $(EXTENSION_MODS_1)"
86+
@echo "\nextension-2: $(EXTENSION_MODS_2)"
8287
@echo "\nconnector: $(CONNECTOR_MODS)"
8388
@echo "\ninternal: $(INTERNAL_MODS)"
8489
@echo "\npkg: $(PKG_MODS)"
@@ -245,6 +250,15 @@ for-exporter-3-target: $(EXPORTER_MODS_3)
245250
.PHONY: for-extension-target
246251
for-extension-target: $(EXTENSION_MODS)
247252

253+
.PHONY: for-extension-0-target
254+
for-extension-0-target: $(EXTENSION_MODS_0)
255+
256+
.PHONY: for-extension-1-target
257+
for-extension-1-target: $(EXTENSION_MODS_1)
258+
259+
.PHONY: for-extension-2-target
260+
for-extension-2-target: $(EXTENSION_MODS_2)
261+
248262
.PHONY: for-connector-target
249263
for-connector-target: $(CONNECTOR_MODS)
250264

0 commit comments

Comments
 (0)